.sidemenu-wrapper {
    position: fixed;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.8s;

    .th-social {
        a {
            box-shadow: none;
            color: $title-color;
        }
    }

    .closeButton {
        display: inline-block;
        border: 2px solid;
        @include equal-size(50px);
        line-height: 48px;
        font-size: 24px;
        padding: 0;
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: $white-color;
        border-radius: 50%;
        transform: rotate(0);
        transition: all ease 0.4s;

        &:hover {
            color: $theme-color;
            border-color: $theme-color;
            transform: rotate(90deg);
        }
    }

    .sidemenu-content {
        background-color: #fff;
        width: 450px;
        margin-left: auto;
        padding: 80px 30px;
        height: 100%;
        overflow: scroll;
        position: relative;
        right: -500px;
        cursor: auto;
        transition-delay: 1s;
        transition: right ease 1s;

        @media(max-width: 450px) {
            width: 300px;
        }

        &::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
            background-color: #f5f5f5;
        }

        &::-webkit-scrollbar {
            width: 2px;
            background-color: #f5f5f5;
        }

        .th-widget-about .footer-info-title {
            color: $title-color;
        }

        // select,
        // input,
        // .form-select,
        // .form-control,
        // textarea {
        //     background-color: $white-color; 
        //     border: none; 
        //     box-shadow: 0px 14px 30px 0px rgba(0, 0, 0, 0.04); 

        // }

        .widget_title {
            color: $title-color;
        }
    }

    .widget {
        padding: 0;
        border: none;
        background-color: transparent;
    }

    .info-box_icon {
        background-color: $theme-color;
        color: $white-color;
    }

    &.show {
        opacity: 1;
        visibility: visible;
        width: 100%;
        transition: all ease 0.8s;

        .sidemenu-content {
            right: 0;
            opacity: 1;
            visibility: visible;
        }
    }

    .info-box_text .icon {
        background-color: #F2F5FA;

        &:hover {
            background-color: $theme-color;
        }
    }

    .th-widget-about .about-text {
        color: $body-color;
        font-family: $style-font;
    }
}