.triggers {
    display: flex;
    align-items: center;
    margin-top: 60px;
    flex-direction: column;
}

.triggers label {
    cursor: pointer;
    height: 43px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #fff;
    border: 2px solid #190146;
    border-radius: 21.5px;
    box-sizing: border-box;
    margin-top: 15px;
}


/** START POPUP CSS **/

.vcms__popup-check {
    display: none;
}

.vcms__popup {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s, opacity 0.25s ease-in-out;
    transition-delay: 0.65s, 0.2s;
}

.vcms__popup-check:checked+.vcms__popup {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s, 0s;
}

.vcms__popup .inner {
    width: 550px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 9px 23px 0 rgba(0, 0, 0, 0.15);
    background-color: #060c5e;
    box-sizing: border-box;
    margin-bottom: 100px;
    opacity: 0;
    transition: margin-bottom 0.4s cubic-bezier(0.42, 0.72, 0.37, 1.31), opacity 0.25s ease-in-out;
    transition-delay: 0s, 0s;
}

.vcms__popup-check:checked+.vcms__popup .inner {
    transition-delay: 0.15s, 0.15s;
    margin-bottom: 0;
    opacity: 1;
}

.vcms__popup .inner .header {
    padding: 20px 25px 13px;
    font-size: 28px;
    color: #fff;
    background-color: #1a3527;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.vcms__popup .inner .txt {
    line-height: 27px;
    padding: 20px 25px;
    max-height: calc(100vh - 260px);
    overflow: auto;
}

.vcms__popup .inner .footer {
    box-sizing: border-box;
    padding: 15px 25px 20px;
    border-top: 1px solid #efefef;
    display: flex;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, 0.6);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.vcms__popup .inner .footer .btn {
    height: 40px;
    width: 80px;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    text-decoration: none;
    font-size: 13px;
    border: 2px solid #070708;
    border-radius: 21.5px;
    box-sizing: border-box;
    font-weight: 600;
    transition: all 0.15s ease-in-out;
}

.vcms__popup .inner .footer .close {
    height: 43px;
    width: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bcbcbc;
    text-decoration: none;
    font-size: 13px;
    border: 2px solid #dadada;
    border-radius: 21.5px;
    margin-left: 7px;
    box-sizing: border-box;
    font-weight: 600;
    cursor: pointer;
    flex-grow: 0;
    flex-shrink: 0;
    transition: all 0.15s ease-in-out;
}

.vcms__popup .inner .footer .btn:hover,
.vcms__popup .inner .footer .close:hover {
    background-color: #fff;
    color: #fff;
    border: 2px solid #fff;
}

.text-input {
    position: relative;
    margin-top: 10px;
}

.text-input input[type="text"] {
    display: inline-block;
    width: 100px;
    height: 40px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid lightgray;
    border-radius: 3px;
    padding: 10px 10px 10px 100px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.text-input input[type="text"]+label {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    color: white;
    border-radius: 3px 0 0 3px;
    padding: 0 20px;
    background: #190146;
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.text-input input[type="text"]:focus+label {
    -webkit-transform: translateY(-120%) translateX(0%);
    transform: translateY(-120%) translateX(0%);
    border-radius: 3px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.text-input input[type="text"]:focus {
    padding: 10px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.text-email {
    position: relative;
    margin-top: 10px;
}

.text-email input[type="text"] {
    display: inline-block;
    width: 100px;
    height: 40px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid lightgray;
    border-radius: 3px;
    padding: 10px 10px 10px 100px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.text-email input[type="text"]+label {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    color: white;
    border-radius: 3px 0 0 3px;
    padding: 0 20px;
    background: #190146;
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.text-email input[type="text"]:focus+label {
    -webkit-transform: translateY(-120%) translateX(0%);
    transform: translateY(-120%) translateX(0%);
    border-radius: 3px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.text-email input[type="text"]:focus {
    padding: 10px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.modern-form h3 {
    text-align: center;
}

.float-label-field {
    border: none;
    outline: none;
    position: relative;
    margin: 0 0 20px 0;
    padding: 0;
    box-sizing: border-box;
}

.float-label-field input {
    border: none;
    outline: none;
    padding: 5px 5px 8px 0px;
    width: 100%;
    font-size: 18px;
    border-bottom: solid 1px #efefef;
}

.float-label-field label {
    opacity: 0.5;
    position: absolute;
    top: 10px;
    left: 0px;
    transition: all 0.2s ease;
    font-size: 18px;
}

.float-label-field.focus label {
    color: orange;
}

.float-label-field.focus input {
    border-bottom: solid 1px orange;
}

.float-label-field.float label {
    opacity: 1;
    top: -8px;
    font-size: 60%;
    transition: all 0.2s ease;
    font-weight: bold;
}

.title {
    font-family: 'Pacifico', cursive;
    color: #ffff;
    font-size: 2.5rem;
}

.form-control {
    background-color: #f2f6f8;
    border-radius: 2rem;
    border: none;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
    &.thick {
        height: 3.3rem;
        padding: .5rem 3.5rem;
    }
    &:focus {
        background-color: #f2f6f8;
        border: none;
        box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
    }
}

.message .form-control {
    padding: .5rem 1.8rem;
}

::placeholder {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #838788;
    position: relative;
    left: 0;
}

input,
textarea {
    font-family: 'Quicksand', sans-serif;
    color: #ffff;
    font-size: 1.1rem;
}

.btn.btn-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 3rem;
    border: 0;
    border-radius: 3rem;
    background-image: linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
    background-size: 300% 100%;
    transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover:enabled {
    box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
    background-size: 100% 100%;
    transform: translateY(-0.15em);
}