.switcher-notice {
    position: fixed;
    width: 305px;
    right: 20px;
    top: 110px;
    background: #fff;
    box-shadow: 0 29px 34px rgba(0, 0, 0, 0.15);
    padding: 19px 40px 17px 52px;
    z-index: 9999;
}

.notice-content {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #000;
}

.notice-content .arrow {
    position: absolute;
    left: 18px;
    top: 24px;
}

.notice-close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 19px;
    height: 19px;
    cursor: pointer;
}

.notice-close:hover {
    opacity: 0.7;
}

.notice-close:before,
.notice-close:after {
    content: "";
    position: absolute;
    width: 13px;
    height: 1px;
    top: 9px;
    left: 3px;
    background: #000;
    transform: rotate(45deg);
}


.notice-close:after {
    transform: rotate(-45deg);
}

@media screen and (max-width: 1199px) {
    .switcher-notice {
        left: 20px;
        top: 90px;
    }
}

@media screen and (max-width: 991px) {
    .hello-popup-form select {
        width: 280px;
    }
}

@media screen and (max-width: 767px) {
    .hello-popup-form {
        flex-direction: column;
    }

    .hello-popup-form select {
        width: 300px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .hello-popup-submit-button {
        width: 300px;
    }

    .switcher-notice {
        left: 5px;
        width: 231px;
        padding: 11px 30px 22px 45px;
    }

    .notice-content .arrow {
        left: 14px;
        top: 14px;
    }

    .notice-content {
        font-weight: 400;
        line-height: 23px;
    }

    .notice-close {
        right: 10px;
    }
}