/* Send-message form */


/* .request-container {
    max-width: 640px;
    padding-left: 30px;
    padding-top: 60px;
    padding-right: 30px;
    padding-bottom: 60px;
    background-color: aliceblue;
}

.request-line {
    width: 100%;
    height: 0px;
    border: 1px solid #828097;
    margin-bottom: 40px;
}

.request-flex-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.request-transparent-container {
    box-sizing: border-box;
    min-width: 45%;
    flex-grow: 1;
    flex-basis: 300px;
    padding-left: 0px;
    padding-top: 24px;
    padding-right: 12px;
    padding-bottom: 24px;
}

.request-header {
    font-family: Verdana, Tahoma, Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #37354F;
    margin-bottom: 30px;
}

.request-message {
    margin-bottom: 16px;
    font-family: Verdana, Tahoma, Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #37354F;
}

.request-blue-container {
    box-sizing: border-box;
    min-width: 40%;
    flex-grow: 1;
    flex-basis: 250px;
    background: #6F68B6;
    border-radius: 4px;
    padding-left: 32px;
    padding-top: 24px;
    padding-right: 32px;
    padding-bottom: 24px;
}

.request-txt-white {
    color: white;
}

.request-open-modal-button {
    width: 190px;
    text-align: center;
    height: 40px;
    background-color: orange;
    font-size: 14px;
    color: darkblue;
    word-spacing: 2px;
    letter-spacing: 5%;
    border: none;
    margin-top: 4px;
    border-radius: 5px;
    font-family: Verdana, Tahoma, Arial;
    vertical-align: middle;
    cursor: pointer;
}

.request-open-modal-button:hover {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 3px darkblue;
}

.request-open-modal-button:active {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 1px inset darkblue;
} */

.form-order1 {
    justify-content: center;
}

.form-box {
    position: relative;
}

.request-modal-container {
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 640px;
}

.r-mod-header {
    color: #302F2F;
    margin-bottom: 10px;
}

.r-mod-input {
    letter-spacing: -0.015em;
    width: 100%;
    height: 50px;
    padding: 12px;
    margin-bottom: 24px;
    border: 1px solid #D6D4EA;
    border-radius: 4px;
    color: #AFACCD;
}

.r-mod-txtarea {
    letter-spacing: -0.015em;
    padding: 12px;
    resize: none;
    width: 100%;
    height: 114px;
    border: 1px solid #D6D4EA;
    border-radius: 4px;
    color: #AFACCD;
    margin-bottom: 24px;
}

.file-area {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 34px;
    border: 1px solid #D6D4EA;
    border-radius: 4px;
    background-color: white;
    margin-bottom: 10px;
}

.back-message-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 34px;
    border: 1px solid #D6D4EA;
    border-radius: 4px;
    margin-bottom: 24px;
    color: #393185;
    cursor: pointer;
    position: relative;
}

.back-message-file {
    display: none;
}

.back-message-label:hover {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 3px gray;
}

.back-message-label:active {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 1px inset gray;
}

.file-area-icon {
    width: 19px;
    height: 19px;
    margin-left: 40px;
    position: absolute;
    right: 5%;
}

.file-area-txt {
    color: #393185;
}

.file-show-area {
    flex-direction: row;
    gap: 6px;
    justify-content: space-evenly;
    align-items: center;
    width: fit-content;
    height: 34px;
    background: #F0EFFA;
    border-radius: 4px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 40px;
}

.file-area-sm-icon {
    width: 12px;
    height: 12px;
}

.file-area-sm-txt {
    color: #393185;
}

.close-icon12 {
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.close-icon18 {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

.r-mod-agree {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.r-mod-chk,
.footer-subscribe-chk {
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    appearance: none;
    margin-left: 0px;
}

.r-mod-chk:checked,
.footer-subscribe-chk:checked {
    background-image: url("/icons/forms/checkmark.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.agree-txt {
    color: #302F2F;
}

.r-mod-btn {
    text-align: center;
    height: 34px;
    border-radius: 4px;
    vertical-align: middle;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid #D6D4EA;
    color: #393185;
    width: 100%;
}

.r-mod-btn:hover {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 3px gray;
    background-color: orange;
    border: none;
    background-image: url("/icons/arrows/arrow-r.svg");
    background-position: right 5% bottom 50%;
    background-size: 21px 21px;
    background-repeat: no-repeat;
}

.r-mod-btn:active {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 1px inset gray;
}

.disabled_send_btn {
    background-color: lightgray !important;
}

.agree-full-txt {
    color: #828097;
    line-height: 22px;
    letter-spacing: -0.015em;
}

.round-snipet {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 284px;
    height: 284px;
    background: #F3F2F8;
    border: 1px solid #393185;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: 150px;
    left: 75%;
}

.round-snipet-self-positioning {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 284px;
    height: 284px;
    background: #F3F2F8;
    border: 1px solid #393185;
    border-radius: 50%;
    text-align: center;
    align-self: flex-end;
    position: relative;
}

.r-snipet-txt {
    padding: 20px;
}

.snipet-d-arrow {
    width: 42px;
    height: 42px;
    position: absolute;
    bottom: 20px;
}

.modal-backside,
.mail-modal-backside {
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: var(--bs-backdrop-bg);
    transition: opacity .15s linear;
    opacity: 0.5;
}

@media (max-width:350px) {
    .request-container {
        padding-left: 4%;
        padding-right: 4%;
    }

    .request-open-modal-button {
        width: 100%;
    }

    .request-modal-container {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media (min-width:910px) {
    .request-modal-container {
        padding-left: 100px;
        padding-right: 100px;
    }
}

.success-container,
.mail-success-container {
    position: fixed;
    left: 0;
    height: 100vh;
    width: 100%;
    top: 0;
    z-index: 1500;
    justify-content: center;
    align-items: center;
}

.success-form,
.mail-success-form {
    position: relative;
    max-width: 860px;
    background-color: rgb(172, 41, 41);
    z-index: 1100;
    /* position: fixed;
    top: 10px; */
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #F2F3F7;
    border-radius: 6px;
}

.success-header {
    color: black;
    margin-bottom: 18px;
}

.success-message {
    color: black;
    margin-bottom: 40px;
}

.success-message div {
    margin-bottom: 16px;
}

.success-back-container,
.mail-success-back-container {
    display: flex;
    width: fit-content;
    border: 1px solid #B0ACD7;
    border-radius: 3px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 4px;
    padding-bottom: 4px;
    letter-spacing: 1px;
    cursor: pointer;
}

.success-back-container:hover,
.mail-success-back-container:hover {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 3px gray;
}

.success-back-container:active,
.mail-success-back-container:active {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 1px inset gray;
}

.success-back-arrow {
    width: 16px;
    height: 16px;
    margin-right: 24px;
    cursor: pointer;
}

.success-back-message {
    color: #393185;
    user-select: none;
}


/* .imgRoundBtn {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-family: Verdana, Tahoma, Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    background-color: orange;
    text-align: center;
    color: darkblue;
    word-spacing: 2px;
    border: none;
    font-family: Verdana, Tahoma, Arial;
    vertical-align: middle;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition-property: background-color;
    transition-duration: 1s;
    transition-property: width;
    transition-duration: 3s;
}

.imgRoundBtn:hover {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 1px gray;
    font-size: 13px;
    width: 102px;
    height: 102px;
}

.imgRoundBtn:active {
    text-shadow: 1px 1px 3px white;
    box-shadow: 1px 1px 1px inset gray;
    font-size: 11px;
    width: 98px;
    height: 98px;
} */


@media screen and (min-width: 761px) and (max-width: 1300px) {
    .round-snipet {
        width: 140px;
        height: 140px;
        left: 82%;
    }

    .round-snipet-self-positioning.middle-wh150px-mr5 {
        width: 150px;
        height: 150px;
        margin-right: 5%;
    }

    .r-snipet-txt.fs-18 {
        font-size: 14px;
        line-height: 14px;
    }

    .r-snipet-txt {
        padding: 12px;
    }

    .snipet-d-arrow {
        width: 20px;
        height: 20px;
        bottom: 4px;
    }
}

@media screen and (max-width: 760px) {
    .round-snipet {
        display: none;
    }
}