
@media (min-width: 1200px){
    .custom-dropdown{
        position: relative;
        display: block;
    }
    .custom-dropdown-btn{
        display: inline-block;
        padding: 5px 0;
        line-height: 26px;
        color: #6b6a6a;
        width: 36px;
        border-radius: 4px;
        text-align: center;
        box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
        height: 36px;
        font-size: 15px;
        transition: 0.2s ease;
        user-select: none;
    }
    .custom-dropdown.showing .custom-dropdown-btn .navbar-toggler-icon{
        border-color: transparent;
    }
    .custom-dropdown.showing .custom-dropdown-btn .navbar-toggler-icon:before{
        transform: translateY(8px) rotate(-45deg);
    }
    .custom-dropdown.showing .custom-dropdown-btn .navbar-toggler-icon:after{
        transform: rotate(45deg);
    }
    .custom-dropdown-menu{
        list-style: none;
        min-width: 200px;
        padding: 10px 0;
    }
    .custom-dropdown .custom-dropdown-menu{
        position: absolute;
        right: 8px;
        box-shadow: 0 0 3px rgba(60,72,88,.15);
        background-color: #fff;
        top: 53px;
        border-radius: 5px;
    }
    .down-arrow{
        transition: 0.2s ease;
    }
    .custom-dropdown:not(.showing) .custom-dropdown-menu{
        display: none;
    }
    .custom-dropdown-btn{
        cursor: pointer;
        /*background-color: #fff;*/
    }
    .custom-dropdown.showing .custom-dropdown-btn .down-arrow{
        color: #2f55d4;
        transform: rotate(180deg);
    }
    .custom-dropdown.showing .custom-dropdown-btn{
        background-color: #f4f4f4;
    }
    .custom-dropdown-menu a{
        display: block;
        color: #212529;
        transition: 0.2s ease;
        padding: 4px 15px;
    }
    .custom-dropdown-menu a:hover{
        color: #2f55d4;
    }
    .custom-user-dropdown .custom-dropdown-btn{
        background: linear-gradient(to right,#f26949,#fc4a45);
        color: #fff;
    }
    .custom-dropdown.custom-user-dropdown .custom-dropdown-menu{
        right: -10px;
    }
    .custom-dropdown-menu:before{
        position: absolute;
        top: -20px;
        right: 17px;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        border-color: transparent;
        border-bottom-color: rgb(237, 237, 237);
        border-width: 11px;
        margin-left: -11px;
    }
}

@media (max-width: 1199px){
    .custom-dropdown:not(.custom-user-dropdown){
        display:none;
    }
    .custom-user-dropdown .custom-dropdown-btn{
        display: none;
    }
    .custom-user-dropdown:before{
        display: none;
    }
    .custom-user-dropdown .custom-dropdown-menu{
        list-style: none;
        padding-left: 0;
    }
    .custom-user-dropdown .custom-dropdown-menu li{
        margin-left: 1.5rem;
        padding-left: 1.5rem;
        position: relative;
    }
    .custom-user-dropdown .custom-dropdown-menu li:before{
        position: absolute;
        display: block;
        top: 15px;
        left: 0;
        width: 8px;
        height: 1px;
        content: "";
        border: none;
        background-color: #000;
    }
    .custom-user-dropdown .custom-dropdown-menu li a{
        font-family: "mark";
        position: relative;
        padding: 5px 0 !important;
        display: inline-block;
        color: #212121 !important;
        font-weight: 500;
    }
    .custom-user-dropdown .custom-dropdown-menu li a:hover{
        color: #133485 !important;
    }
}

@media (min-width:768px) and (max-width:1199px){
    .custom-user-dropdown .custom-dropdown-menu li{
        margin: 0;
        font-size: 14px;
    }
}

@media (max-width: 767px){
    .custom-user-dropdown .custom-dropdown-menu li{
        margin: 0;
    }
    .custom-dropdown.custom-user-dropdown{
        padding: 0!important;
    }
    .collect-modules .owl-item:last-child{
        margin-right: 0!important;
    }
}

@media (min-width: 1200px) AND (max-width: 1300px){
    .custom-user-dropdown{
        display:none!important;
    }
}



