@import "navigation.css";

*:focus,
button:focus {
    outline: none;
}

body {
    font-family: 'Rubik', sans-serif;
    box-sizing: border-box;
    overflow-y: hidden;
}

/** Contianer */
.container {
    z-index: 1 !important;
}

/** Helpers */
.mt-10 {
    margin-top: 5em;
}

.text-btc {
    color: #6D6D6D;
}

.vertical-center {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 75vh;
}

/** Background */
.btc-background {
    background: transparent linear-gradient(90deg, #16AEA4 0%, #1697A4 100%) 0% 0% no-repeat padding-box;
    height: 100vh;
    display: grid;
}

/** label */
.btc-label {
    text-align: left;
    font: normal normal normal 17px/20px Rubik;
    letter-spacing: 0px;
    color: #6D6D6D;
    opacity: 1;
}

.btc-label-dark {
    color: #fff;
}

/** Form elements */
.btc-form-control {
    text-align: left;
    font: normal normal normal 21px/25px Rubik;
    letter-spacing: 0px;
    color: #6D6D6D;
    opacity: 1;
}

.btc-form-control::placeholder {
    color: #E3E3E3;
}

.btc-form-control.is-invalid {
    border: thin solid #cf1b1b !important;
}

.select2-selection.select2-selection--single {
    border-radius: 36px !important;
    height: 2em !important;
}

.select2-selection__rendered {
    line-height: 30px !important;
    color: #6D6D6D !important;
}

.select2-results li:hover {
    border-radius: 12px !important;
    background: #169FA4 !important;
    color: #fff !important;
}

.select2-select-results {
    border-radius: 36px !important;
    color: #E3E3E3 !important;
}

.select2-dropdown.select2-dropdown--below {
    border: none;
    border-bottom: thin solid #ccc;
}

ul.select2-results__options li {
    background: #fff !important;
    color: #c3c3c3 !important;
}

  .select2-container--default .select2-selection--single .select2-selection__arrow {
      top: 5px !important;
      right: 4px !important;
  }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background: url("../images/select-down-arrow.png") 99% / 8% no-repeat #fff;
    background-color: transparent;
    background-size: contain;
    border: none !important;
    height: 20px !important;
    width: 20px !important;
    margin: auto !important;
    top: auto !important;
    left: auto !important;
  }

.btc-select, input[type='text'].btc-form-control {
    width: 100%;
    border-radius: 36px;
    display: inline-block;
    overflow: hidden;
    border: 1px solid #B4B4B4;
}

select.btc-form-control {
    font: normal normal normal 17px/20px Rubik;
    width: 100%;
    height: 2em;
    border: none;
    outline: none;
    padding: .3em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("../images/select-down-arrow.png") 99% / 8% no-repeat #fff;
}

input[type='text'].btc-form-control {
    font: normal normal normal 17px/20px Rubik;
    height: 2em;
    padding-left: .5em;
    padding-right: .5em;
}

.btc-input-dark input[type='text'].btc-form-control {
    background: transparent;
    color: #fff;
    border: thin solid #fff;
}

/** Button */
input[type='submit'].btc-btn, input[type='button'].btc-btn, button.btc-btn {
    border: none;
    padding: .4em 1.2em;
    background: #169FA4 0% 0% no-repeat padding-box;
    box-shadow: 3px 3px 3px #00000047;
    border-radius: 34px;
    opacity: 1;
    font: normal normal normal 20px/26px Rubik;
    letter-spacing: 0px;
    color: #FFFFFF;
}

input[type='submit'].btc-btn:active, input[type='button'].btc-btn:active, button.btc-btn:active {
    background: hsl(179, 84%, 27%);
}

.btc-btn.btc-btn-sm {
    font-size: 18px;
}

.btc-switch {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 34px;
}

.btc-switch input {
    display: none;
}

.btc-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffff;
    border: thin solid #999;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.btc-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #169EA4;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .btc-slider {
    background-color: #169EA4
}

input:focus + .btc-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .btc-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(55px);
}

.btc-slider:after {
    content:'No';
    color: #999;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    font-size: 10px;
    font-family: Verdana, sans-serif;
}

input:checked + .btc-slider:after {
    content:'Yes';
    color: #fff;
}

/** Text size */
.btc-text-size {
    font-size: 20px;
}

/** border rounded for text */
.btc-rounded-text {
    border-radius: 24px;
    top: 611px;
    left: 173px;
    width: 350px;
    height: 71px;
}

.btc-rounded-text-2 {
    border-radius: 24px;
}

/** Header */
.btc-header .btc-header-shape {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 50vw;
}

/** Footer */
.btc-footer .btc-footer-image img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 800px;
    height: 400px;
    z-index: -1;
}

.btc-footer .btc-footer-logo { 
    max-width: 150px; 
    z-index: 2;
    position: absolute; 
    bottom: 2em; 
    left: 8em;
}

.btc-footer .btc-footer-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 45vw;
}

@media only screen and (max-width: 1600px) {
    .btc-footer .btc-footer-logo { 
        bottom: 1em; 
        left: 4em;
    }

    .btc-footer .btc-footer-shape {
        max-width: 35vw;
    }
}