﻿.btn-radio {
    width: 32px;
    height: 32px;
    margin-right: 1em;
    color: #239390 !important;
}
 input[type=radio] {
    -webkit-appearance: none;
    border:1px solid #686868;
    border-radius: 50%;
}
    input[type=radio]:checked {
        -webkit-appearance: none;
        border: 1px solid #686868;
        border-radius: 50%;
        background-color: #239390;
        padding: 4px;
        background-clip: content-box;
    }

input:focus, textarea:focus, select:focus {
    outline: none;
    border-bottom: solid 2px #686868;
}
.textBox {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: solid 2px #686868;
}
/* Change the white to any color ;) */
.contact input:-webkit-autofill,
.contact input:-webkit-autofill:hover,
.contact input:-webkit-autofill:focus,
.contact input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    color: inherit !important;
}
/* Change the white to any color ;) */
.green input:-webkit-autofill,
.green input:-webkit-autofill:hover,
.green input:-webkit-autofill:focus,
.green input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #239390 inset !important;
    -webkit-text-fill-color: white !important;
}
::placeholder{
    font-size:16px;
    color: inherit!important;
    font-family: "Raleway";
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 16px;
}
.textBoxGreen {
    height: 48px;
    background-color: #239390 !important;
    color: white!important;
    width:100%;
    border:none!important;
    border-bottom: 2px solid white!important;
}
::-ms-input-placeholder { /* Microsoft Edge */
    font-size: 16px;
    color: inherit !important;
}
.textArea {
    height: 120px;
    width: 100%;
    border: none;
    border-bottom: solid 2px #686868;
}
/*.container .checkBox{
    width: 20px;
    height: 20px;
}*/
.container input[type=checkbox] {
    position: absolute;
    -webkit-appearance: none;
    opacity: 1;
    cursor: pointer;
    height: 20px;
    width: 20px;
    background-color: white !important;
    border: 1px solid #686868;
    border-radius: 2px;
    background-image: url("../img/checkmark.svg");
}

    .container input[type=checkbox]:checked {
        color: red !important;
        border: none;
        background-color: #239390 !important;
        color: white;
        font-style: normal;
    }

.btn-invisible {
    background-color: transparent;
    border: none;
    width: 200px;
    display: flex;
    justify-content: flex-end;
}
.btn-invisibleGreen {
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: flex-end;
}
.btn-invisibleGreen:focus {
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: flex-end;
}

.container select {
    -webkit-appearance: none;
    width: 100%;
    background-color: #239390 !important;
    border: solid 2px #ffffff;
    width: 100%;
    height: 48px;
    padding: 5px 21px!important;
    color: white !important;
    background: url("../img/drowdown_arrow-white.svg") no-repeat 100% 50%;
    background-size: 40px 20px;
}
    .container select option {
        background-color: white;
        color: #239390 !important;
    }