.contact-container {
    padding-top: 40px;
    padding-bottom: 60px;
    background-image: url('../../static/images/background-contact.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-title {
    color: #000000;
    font-weight: bold;
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 24px;
}

.left-side-form,.right-side-info {
    padding: 0;
}

.right-side-info {
    padding-left: 20px;
}

.left-side-form {
    padding-right: 20px;
}

.left-side-form form {
    background: #FFFFFF;
    box-shadow: -5px 5px 15px rgba(12, 36, 64, 0.3);
    border-radius: 20px;
    padding: 40px 32px;
}

.left-side-form .form-group label{
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.left-side-form .form-group label > .label-icon {
    margin-right: 8px;
    width: 25px;
    /* height: 30px; */
}

.left-side-form .form-group label {
    font-weight: 300;
    font-size: 16px;
    line-height: 21px;
    color: #06BAE8;
}

.left-side-form .form-group .form-control {
    font-size: 16px;
}

.left-side-form textarea.form-control {
    
    resize: none;
    height: 200px;
}

.left-side-form form .form-check {
    padding-left: 0;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 16px;
}

.left-side-form form .form-group {
    margin-bottom: 16px;
}
.custom-elsa-checkbox {
    margin-right: 8px;
}

.custom-elsa-checkbox ~ .form-check-label {
    color: #000000;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}

.custom-elsa-checkbox > input{
    opacity: 0;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.custom-elsa-checkbox .checkbox__control {
    display: inline-grid;
    width: 40px;
    height: 40px;
    /* border-radius: 0.25em; */
    border: 2px solid #57B3FF;
    color: #57B3FF;
  }

  .custom-elsa-checkbox {
    display: grid;
    grid-template-areas: "checkbox";
  }

  .custom-elsa-checkbox > * {
    grid-area: checkbox;
  }

  .checkbox__control svg {
    transition: transform 0.1s ease-in 25ms;
    transform: scale(0);
    transform-origin: bottom left;
  }

  .custom-elsa-checkbox input:checked
 + .checkbox__control svg {
  transform: scale(1);
}

.left-side-form .submitbtn-left-side{
    margin-top: 32px;
    width: 100%;
}

.checkbox__input input:focus
 + .checkbox__control {
  box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 2px #57B3FF;
}

.contact-detail > .contact-detail-block {
    margin-bottom: 24px;
}


.contact-detail-block > * {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0px;
    color: #000000 !important;
}

.error-under-input {
    font-size: 12px;
    color: red;
    font-weight: 300;
    margin-bottom: 0;
}

form#contact-form .btn-elsa-custom-gray {
    font-size: 18px;
}

.contact-submit-alert {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    /* width: 100%;
    background: #000000;
    opacity: 0.6; */
}

.contact-submit-alert-filter{
    /* position: absolute; */
    top: 0;
    width: 100%;
    background: #000000;
    height: 100%;
    opacity: 0.6;
}

.alert-contain {
    width: 40vw;
    position: absolute;
    /* height: 100%; */
    padding: 32px;
    margin: auto;
    top: 30vh;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    left: 0;
    right: 0;
    border-radius: 20px;
}

.alert-contain .text-alert {
    margin-bottom: 0;
}

.alert-contain .alert-button {
    margin: auto;
    font-size: 18px;
    font-weight: lighter;
    /* line-height: 24px; */
}

.text-alert-contain {
    font-size: 16px;
    margin-bottom: 16px;
    /* opacity: 1; */
}

.text-alert{
    line-height: 21px;
}

.text-alert > .alert-bold-text {
    font-weight: bold;
}

.left-side-form form .form-group.condition-show {
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
    max-height: 100px;
}

.left-side-form form .form-group.condition-show.hidden {
    max-height: 0px;
    margin-bottom: 0px;
}

@media (max-width: 991px){
    .contact-container {
        background-image: url('../../static/images/background-contact-mobile.png');
        padding: 40px 0;
    }

    .left-side-form {
        margin-bottom: 32px;
    }

    .left-side-form, .right-side-info {
        padding: 0px;
    }

    .right-side-info{
        display: flex;
        flex-direction: column-reverse;
    }
    
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 32px
    }

    .custom-elsa-checkbox ~ .form-check-label {
        font-size: 14px;
    }

    form#contact-form .btn-elsa-custom-gray {
        font-size: 16px;
    }

    .left-side-form .form-group label ,.left-side-form .form-group .form-control{
        font-size: 15px;
    }
}