body {
        font-family: 'Cabin', sans-serif;
        color:white;
        font-size: 18px;
  background-color: #252429;
  
    }
    body:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: url(bg_trail.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
    
    input {
  width: 100%;
  color: white;
  text-align: center;
        background-color: #202124; 
        border: 1px sold white;
        font-size: 40px;
}
    .messageBar {
        background: #202124;
     
        padding: 15px;
        width: 100%;
        
      }
      
      textarea {
          width: 100%;
  color: white;
  text-align: left;
  padding: 5px;
        background-color: #202124; 
        border: 1px sold white;
        font-size: 17px;
        height: 150px;
      }

    .btn {
  border: none;
  color: #222;
  padding: 15px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  width: 100%;
  background: #03a175;
}
.green {
    color: #fff;
  background: #1c786d;
}
.blue {
  color: white;
  background: #034b57;
}
.red {
  color: white;
  background: #dd5f4b;
}
.dark {
  color: black;
}
table {
    width: 100%;
}
table th {
  border: 1px solid #fff;
  padding: 10px;
  
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  font-family: 'Oswald', sans-serif;
}
.wrapper{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /*background: linear-gradient(-135deg, #c850c0, #4158d0);*/
  /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
 /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
  /* clip-path: circle(25px at calc(0% + 45px) 45px); */
  background: #000;
  clip-path: circle(0px at calc(100% - 45px) 45px);
  transition: all 0.3s ease-in-out;
}
#active:checked ~ .wrapper{
  clip-path: circle(75%);
}
.menu-btn{
  position: absolute;
  z-index: 2;
  right: 30px;
  /* left: 20px; */
  top: 20px;
  height: 50px;
  width: 100px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  /*background: linear-gradient(-135deg, #c850c0, #4158d0);*/
  /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
 /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
  transition: all 0.3s ease-in-out;
}
#active:checked ~ .menu-btn{
  color: #fff;
}
#active:checked ~ .menu-btn i:before{
  content: "\f00d";
}
.menu-btn-back{
  position: absolute;
  z-index: 2;
  left: 30px; */
  top: 20px;
  height: 50px;
  width: 100px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  /*background: linear-gradient(-135deg, #c850c0, #4158d0);*/
  /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
 /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
  transition: all 0.3s ease-in-out;
}
#active:checked ~ .menu-btn-back{
  color: #fff;
}
#active:checked ~ .menu-btn-back i:before{
  content: "\f00d";
}
.wrapper ul{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.wrapper ul li{
  margin: 15px 0;
}
.wrapper ul li a{
  color: none;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 5px 30px;
  color: #fff;
  border-radius: 50px;
  background: #000;
  position: relative;
  line-height: 50px;
  transition: all 0.3s ease;
}
.wrapper ul li a:after{
  position: absolute;
  content: "";
  background: #fff;
  background: linear-gradient(#d54a1c, #034b57, #e4a62f);
  /*background: linear-gradient(375deg, #1cc7d0, #2ede98);*/
  width: 104%;
  height: 110%;
  left: -2%;
  top: -5%; /* if the font is 'Oswald'*/
  border-radius: 50px;
  transform: scaleY(0);
  z-index: -1;
  animation: rotate 1.5s linear infinite;
  transition: transform 0.3s ease;
}
.wrapper ul li a:hover:after{
  transform: scaleY(1);
}
.wrapper ul li a:hover{
  color: #fff;
}
input[type="checkbox"]{
  display: none;
}
.content{
  padding: 15px;
  padding-top:170px; 
  padding-bottom:170px;
  
}

/* For Mobile */
@media screen and (max-width: 540px) {
    .content {
        padding-top:100px;
        padding-bottom:100px;
    }
    
}

/* For Tablets */
@media screen and (min-width: 540px) and (max-width: 780px) {
    .content {
        padding-top:170px;
        padding-bottom:170px;
    }
}


@keyframes rotate {
  0%{
    filter: hue-rotate(0deg);
  }
  100%{
    filter: hue-rotate(360deg);
  }
}

.fixed-header, .fixed-footer{
        width: 100%;
        
        position: fixed;        
        background: #1c786d;
        color: #fff;
    }
    .fixed-header{
        top: 0;
    }
    .fixed-footer{
        bottom: 0;
    }   
* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding-bottom: 5px;
  height: 60px;
  
  text-align: center;
  /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Create three equal columns that floats next to each other */
.column_trail {
  float: left;
  width: 44%;
  margin:3%;
  padding:3%;
  
  
  
  text-align: center;
  /* Should be removed. Only for demonstration */
}
.column_front {
  float: left;
  width: 44%;
 
  
  
  
  text-align: left;
  /* Should be removed. Only for demonstration */
}

.column_view_rc {
  float: left;
  width: 47%;
  padding:10px;
  
  
  
  text-align: left;
  /* Should be removed. Only for demonstration */
}

.column_payfast {
    float: left;
  width: 47%;
  padding:10px;
}
.size_btn {
    
 width:120px;
 margin:5px;
}

.size_btn_pay {
     width:60%;
}
/* Clear floats after the columns */
.row_nav:after {
  content: "";
  display: table;
  clear: both;
}

.column_nav {
  float: left;
  width: 33%;
  
  
  text-align: center;
  /* Should be removed. Only for demonstration */
}

.row_pay:after {
  content: "";
  display: table;
  clear: both;
}
.column_pay {
  float: left;
  width: 33%;
  
  /* Should be removed. Only for demonstration */
}
.column_nav_logo {
  float: left;
  width: 60%;
  margin:3%;
  padding:3%;
  
  
  text-align: center;
  /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row_trail:after {
  content: "";
  display: table;
  clear: both;
}
.row_front:after {
  content: "";
  display: table;
  clear: both;
}



/* Create three unequal columns that floats next to each other */
.column_head {
  float: left;
  padding: 10px;
 
}

.left {
  width: 25%;
  text-align: left;
  font-size: 30px;
  color: #d7cd9c;
  margin-top: 10px;
 margin-bottom: 10px;

}

.right {
 width: 25%;   
text-align: right;
   font-size: 30px;
   color: #d7cd9c;
  margin-top: 10px;
margin-bottom:10px;

  
}
.left_pay {
  text-align: left;
  

}

.right_pay {
text-align: right;
   

  
}
.middle {
  width: 50%;
  text-align: center;

}
.middle_pay {
 
  text-align: center;

}

/* Clear floats after the columns */
.row_head:after {
  content: "";
  display: table;
  clear: both;
}
 a.nav:link {
  color: #d7cd9c;
}

/* visited link */
 a.nav:visited {
  color: #d7cd9c;
}

/* mouse over link */
 a.nav:hover {
  color: #d7cd9c;
}

/* selected link */
a.nav:active {
  color: #d7cd9c;
}
    
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --select-border: #fff;
  --select-focus: #fff;
  --select-arrow: var(--select-border);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #222;
  
  border: none;
  padding:20px;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  color: #fff;
  z-index: 1;
  outline: none;
}

.select {
  display: grid;
  grid-template-areas: "select";
  align-items: left;
  position: relative;

  select,
  &::after {
    grid-area: select;
  }

  min-width: 15ch;
  max-width: 30ch;
  border: 1px solid var(--select-border);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;
  background: #314395;
  &::after {
    content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: var(--select-arrow);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  }
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd !important;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #222222 !important;
}

h1 {
    text-transform: uppercase !important;
    color:#d7cd9c;
}
h5 {
    color: #d7cd9c;
}
h3 {
    color: #d7cd9c;
}
@media screen and (max-width: 600px) {
    .column_front {
      width: 100%;

      
    } 
    .column_view_rc {

  width: 100%;
  
  
  
  text-align: left;
  /* Should be removed. Only for demonstration */
}
.size_btn {
    
 width:100%;
 margin: 10px;
}

.size_btn_pay {
    
 width:100%;

}
.left_pay {
  text-align: center;
  padding:10px;

}

.right_pay {
text-align: center;
   
padding:10px;
  
}

.middel_pay {
    
    padding:10px;
}
.column_pay {
  width: 100%;
  
  /* Should be removed. Only for demonstration */
}

}