body{
    background-color: #000000 !important;
    background-image: url('../img/bcakgr.png');
    background-size: 100%;
    background-repeat: no-repeat;
    
}

div.header{
    position: relative !important;
    height: 180px;

}
.logo img{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
}

/* set color */
.c-yellow{
    color: #FFBB17;
}
.c-dark-yellow{
    color: #FFBB17;
}
.c-white{
    color: #FFFFFF;
}
.c-red{
    color: #C72F2F;
}





h2{
    margin:0 !important;
}

h1.c-dark-yellow {
    position: absolute;
    bottom: 0;
}


/*  */


input[type="text"] {
    background-color: #151515;
    width: 350px;
    border: none;
    border-radius: 6px;
   
    height: 50px;
}

label.custom-file-upload {
        width: 350px;
        height: 50px;
}

/* input file */
input[type="file"] {
    -webkit-appearance: none;
   text-align: left;
   -webkit-rtl-ordering:  left;
}
.custom-file-upload {
    border-radius: 6px;
    border: none;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button{
    -webkit-appearance: none;
    float: right;
    margin: 0 0 0 10px;
    border: none;
    border-radius: 4px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#d2d0d0), to(#f0f0f0));
    background-image: -moz-linear-gradient(90deg, #d2d0d0 0%, #f0f0f0 100%);
 }


 .filecontainer-checkbox {
    overflow: hidden;
    position: relative;
}

.filecontainer-checkbox [type=file] {
    cursor: inherit;
    display: block;
    font-size: 999px;
    filter: alpha(opacity=0);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
}


label.custom-file-upload {
    position: relative;
    width: 350px;
    height: 50px;
    background-color: #151515;
    display: flex;
    flex-direction: row;
    align-items: center;
}
lable.bottom-upload {
    padding: 2% 4%;
    background-color: #FFBB17;
    border-radius: 28px;
    display: flex;
    flex-direction: row;
}
.name-file{
    width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}
.ic-upload{
    margin-right: 10px;
    height: 19px;
}
.custom-text.ico-input-globe input[type='text'] {
    background-image: url(../img/icon-globe.png);
    background-position: 96%;
    background-repeat: no-repeat;
    padding-right: 30px;
    background-size: 15px;
}
.custom-text.ico-input-facebook input[type='text'] {
  background-image: url(../img/icon-facebook.png);
  background-position: 96%;
  background-repeat: no-repeat;
  padding-right: 30px;
  background-size: 15px;
}
.custom-text.ico-input-twitter input[type='text'] {
  background-image: url(../img/icon-twitter.png);
  background-position: 96%;
  background-repeat: no-repeat;
  padding-right: 30px;
  background-size: 15px;
}
.custom-text.ico-input-instagram input[type='text'] {
  background-image: url(../img/icon-instagram.png);
  background-position: 96%;
  background-repeat: no-repeat;
  padding-right: 30px;
  background-size: 15px;
}


/* switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #FFBB17;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #FFBB17;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }


  /* check list */
  /* The container-checkbox */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #151515;
    border-radius: 6px;
  }
  
  /* On mouse-over, add a grey background color */
  .container-checkbox:hover input ~ .checkmark {
    background-color: #151515;
    border-radius: 6px;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container-checkbox input:checked ~ .checkmark {
    background-color: #151515;
    border-radius: 6px;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container-checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #FFBB17;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .btn-submit{
    border-radius: 30px;
    border: none;
    width: 190px;
    height: 50px;
    background-color: #FFBB17;
    font-size: 15px;
    margin-left: 100%;
  }

  .footer{
    width: 200px;
    background-image: url(../img/footer.png );
    padding: 0;
    margin: 0;
    background-repeat: no-repeat;
  }