/* Using min-width */
/* Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... } */

/* Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... } */

/* Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... } */

/* Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... } */

/* Using max-width */
/* @media (max-width: 575.98px) { ... } */

/* Small devices (landscape phones, less than 768px)
@media (max-width: 767.98px) { ... } */

/* Medium devices (tablets, less than 992px)
@media (max-width: 991.98px) { ... } */

/* Large devices (desktops, less than 1200px)
@media (max-width: 1199.98px) { ... } */
@media only screen and (max-width: 500px) {
    .logout-m {
        position: absolute; 
        top: 64px; 
        left: 150px;
    }
}

@media only screen and (max-width: 500px) {
    .sub-nav nav {
        width: 100%;
        margin: 0 auto; 
    }
}

@media only screen and (max-width: 500px) {
    .blog .article-width-m .article-content .article-content-content {
        min-height: 300px;
    }

    .article-wrap-m .article .average-rating {
        min-width: unset;
    }
}

@media only screen and (max-width: 500px) {
    .related-wrap-v .related {
        height: auto;
    }
}

@media only screen and (max-width: 450px) {
    .section.video {
        padding-top: 0;

    }
}

@media only screen and (max-width: 375px) {
    .dropdown-btn-settings::before {
        left: 34%;
    }
}

@media only screen and (max-width: 360px) {
    .dropdown-btn-settings::before {
        left: 36%;
    }
}

@media only screen and (max-width: 320px) {
    .dropdown-item-style {
        font-size: 15px !important;
        padding-top: 11px !important;
        padding-bottom: 5px !important;
        margin-left: 14px !important;
    }
}

@media only screen and (max-width: 320px) {
    .dropdown-btn-settings::before {
        left: 40%;
    }
}


@media only screen and (max-width: 420px) {
    .register-v .modal-footer .small-panel {
        margin-top: 5px;
        margin-bottom: 5px;
        display: block;
    }

    .register-v .modal-footer button.remove-no {
        margin-bottom: 0;
    }
}