.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.custom-modal-container {
    background-color: #17403d;
    padding: 2rem;

    max-width: 480px;
}

.custom-modal-container .site-branding {}

.custom-modal-container .arrow {

    background-color: #f2d5ce;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.custom-modal-container .site-branding {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.custom-modal-container__content{
    color:#9eadb0;
}
.custom-modal-button{
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-modal-container svg {


    width: calc(var(--medium-font-calc) * 0.115);
    height: calc(var(--medium-font-calc) * 0.027);


}

@media screen and (max-width: 640px) {
    .custom-modal-container  .site-branding{
        max-height: 4rem;
    }

    .custom-modal-container svg {
        height: 2.8rem;
        width: 11.83rem;
    }

    .custom-modal-container svg:first-of-type {
        height: 1.16rem;
        width: 7.6rem;
    }
}

.custom-modal-container svg:first-of-type {
    width: calc(var(--medium-font-calc) * 0.073);
    height: calc(var(--medium-font-calc) * 0.011);
    margin-bottom: calc(var(--medium-font-calc) * 0.003);


}

.close-modal {
    float: right;
    margin-bottom: calc(var(--site-calc) * 0.011);
    position: relative;



    width: calc(var(--medium-font-calc) * 0.0215);
    height: calc(var(--medium-font-calc) * 0.0215);
    opacity: 0.8;



    cursor: pointer;


}

.close-modal:hover {
    opacity: 1;
}

.close-modal:before,
.close-modal:after {
    position: absolute;
    right: 0;
    content: ' ';
    height: calc(var(--medium-font-calc) * 0.0215);
    width: 2px;
    background-color: #fff;


}

.close-modal:before {
    transform: rotate(45deg);
}

.close-modal:after {
    transform: rotate(-45deg);
}