:root {
    --transitionTime: 0.1s;
}

.support-area-container {
    max-width: 400px;
    min-width: 400px;
    max-height: 200px;
    min-height: 200px;
    /* height: calc(280px); */
    /* background-color: #1c232a;
    background-color: #172333;
    border: 1px solid #2f3b47; */
    /* background: radial-gradient(farthest-corner at 40px 40px, #1e2533, #0f131b 100%); */
    background-color: #141923;
    border-radius: 8px;
    /* border: 1px solid #242c3b; */
    background-image: radial-gradient(farthest-corner at 40px 40px, var(--d2), var(--d0) 100%);
    cursor: pointer;
    padding: 25px;
    margin-bottom: 30px;
    box-sizing: border-box;
    position: relative;
    /* transition: 0.1s; */
}

.support_area_description {
    text-align: center;
}

.support_icon_container {
    /* border: 1px solid white; */
    text-align: center;
    margin: 5px;
    box-sizing: border-box;
    padding-left: 5px;
}

.support-area-container:hover {
    /* background-color: #2f3b47; */
    /* background: radial-gradient(farthest-corner at 40px 40px, #293244, #19202c 100%); */
    background-image: radial-gradient(farthest-corner at 40px 40px, var(--d3), var(--d1) 100%);
}

.support-area-container:active {
    transition: 0s;
    opacity: 0.3;
}

.support_questionbox {
    width: 100%;
    height: auto;
    /* max-height: 100px; */
    height: auto;
    max-height: 40px;
    padding-bottom: 10px;
    border: 1px solid #444444;
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    box-sizing: border-box;
    /* transition: 1s; */
    background-color: #1c232a;
    background-color: #1e2533;
}

.support_question {
    background-color: #000;
    text-align: left;
    padding-left: 35px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.1s;
    font-size: 1.1rem;
    color: white;
    /* margin-top: 7px; */
    padding-top: 7px;
    height: auto;
    padding-bottom: 10px;
}

.support_question:hover {
    opacity: 1;
}

.support_questionbox_arrow {
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffae00;
    border-right: 2px solid #ffae00;
    position: absolute;
    top: 13px;
    left: 10px;
    /* left: 10px; */
    transform: rotate(45deg);
    opacity: 1;
    z-index: 1;
    /* transition: var(--transitionTime); */
}

.support_question:hover .support_question {
    background-color: #222222;
}

.support_question:hover .support_questionbox_arrow {
    opacity: 1;
    animation: fade-in-left 0.2s 2;
}

.support_response {
    margin-top: 5px;
    text-align: left;
    margin-left: 10px;
    /* color: #999999; */
    padding: 15px;
    font-size: 1rem;
    color: #7e7e7e;
}

.contact_form_container {
    animation: fade-in-bottom 1s;
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    padding: 30px;
    /* border-radius: 10px; */
    box-sizing: border-box;
    /* background-color: #252525; */
    /* border: 1px solid #555555; */
    margin-top: 30px;
    background-color: #0f0f0f;
    border: 1px solid #333333;
    border-top: 1px solid #474747;
    background-color: #0f131b;
    /* border: 1px solid #333333; */
    border: 1px solid #222;
    background: radial-gradient(farthest-corner at 40px 40px, #1e2533c5, #0f131b 100%);
    position: relative;
}

.contact_form_container input[type="text"] {
    margin-bottom: 15px;
}

.mobile-hyperlink {}

@media only screen and (max-width: 1145px) {

    .icon-faqs {
        width: 15vw;
        height: 20vw;
        /* border: 1px solid white; */
        background-size: 60%;
        background-position: bottom;
    }

    .support_questionbox_arrow {
        width: 1.5vw;
        height: 1.5vw;
        border-top: 1vw solid #ffae00;
        border-right: 1vw solid #ffae00;
        top: 3vw;
        left: 2vw;
    }

    .support_question {
        font-size: 0vw;
        padding-top: 1vw;
        padding-bottom: 3vw;
        padding-left: 7vw;
    }

    .contact_form_container {
        max-width:
            100%;
    }

    .contact_form_container .text {
        font-size: 2vw;

    }

    .contact_form_container .text-area {
        max-height: 100vw;
        height: 60vw;
        margin-top: 5vw;
        font-size: 3vw;
    }

    .support-area-container {
        max-width: 100%;
        min-width: 300px;
        max-height: 1200px;
        min-height: 400px;
        padding: 5rem;
    }

    .mobile-hyperlink {
        font-size: 4.5vw;
    }

    .support_questionbox {
        max-height: 15vw;
    }

    .support_question {
        font-size: 3rem;
    }

    .support_response {
        font-size: 5vw;
    }
}

@keyframes fade-in-left {
    0% {
        left: 10px;
    }

    50% {
        left: 13px;
    }

    100% {
        left: 10px;
    }
}

@keyframes fadein-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}