﻿/*
 * Silqu Page
 *
 * This style is use in file manager page.
 *
 */
@media (max-width: 991.98px) {
    .app-silqu.silqu-sidebar-show .silqu-sidebar {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .app-silqu.silqu-sidebar-show .silqu-content {
        transform: translateX(240px);
    }
}

.silqu-wrapper {
    position: absolute;
    top: 55px;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (min-width: 992px) {
    .silqu-wrapper {
        top: 60px;
    }
}

@media (min-width: 992px) {
    .silqu-wrapper-two {
        position: relative;
        height: 100%;
        top: auto;
    }
}

.silqu-sidebar {
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -240px;
    width: 240px;
    border-right: 1px solid rgba(72, 94, 144, 0.16);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .silqu-sidebar {
        transition: none;
    }
}

@media (min-width: 992px) {
    .silqu-sidebar {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
}

.silqu-sidebar-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55px;
    border-bottom: 1px solid rgba(72, 94, 144, 0.16);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

    .silqu-sidebar-header button {
        text-transform: uppercase;
        font-weight: 500;
        font-size: 10px;
        font-family: -apple-system, BlinkMacSystemFont, "Inter UI", Roboto, sans-serif;
        letter-spacing: .5px;
    }

        .silqu-sidebar-header button.btn-white {
            font-weight: 700;
        }

        .silqu-sidebar-header button + button {
            margin-left: 10px;
        }

        .silqu-sidebar-header button svg {
            width: 12px;
            height: 12px;
            stroke-width: 2.5px;
            margin-top: -1px;
        }

.silqu-sidebar-body {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    bottom: 0;
}

.silqu-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .silqu-content {
        transition: none;
    }
}

@media (min-width: 992px) {
    .silqu-content {
        left: 240px;
    }
}

.silqu-content-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55px;
    border-bottom: 1px solid rgba(72, 94, 144, 0.16);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.navbar .feather-search {
    color: #8392a5;
    align-self: center;
    width: 18px;
    stroke-width: 2.8px;
    margin-right: 10px;
    margin-top: -2px;
}

.navbar .search-form {
    display: flex;
    align-items: center;
    width:20em;
}

    .navbar .search-form .form-control {
        border-width: 0;
        background-color: transparent;
        font-size: inherit;
        padding: 0;
        color: #1b2e4b;
    }

.silqu-content-header .nav-link {
    padding: 0;
}

    .silqu-content-header .nav-link + .nav-link {
        margin-left: 10px;
    }

    .silqu-content-header .nav-link svg {
        width: 20px;
        height: 20px;
        stroke-width: 2.2px;
    }

        .silqu-content-header .nav-link svg.feather-settings {
            width: 18px;
            height: 18px;
        }

.silqu-content-body {
    background-color: #f8f9fc;
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    bottom: 0;
    padding:5px 20px 20px 20px;
}

@media (min-width: 1200px) {
    /*.silqu-content-body > div:first-child {
        max-width: 1140px;
    }*/
}

.dropdown-file {
    position: absolute;
    top: 8px;
    right: 4px;
}

    .dropdown-file .dropdown-link {
        color: rgba(131, 146, 165, 0.5);
    }

        .dropdown-file .dropdown-link:hover, .dropdown-file .dropdown-link:focus {
            color: #1b2e4b;
        }

        .dropdown-file .dropdown-link svg {
            width: 18px;
            height: 18px;
        }

    .dropdown-file .dropdown-item {
        font-size: 12px;
        display: flex;
        align-items: center;
        padding: 5px 10px;
    }

        .dropdown-file .dropdown-item svg {
            width: 14px;
            height: 14px;
            stroke-width: 2.5px;
            margin-right: 10px;
            color: #8392a5;
        }

.card-file {
    padding: 10px;
    position: relative;
    border-color: rgba(72, 94, 144, 0.16);
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .card-file {
        transition: none;
    }
}

.card-file:hover, .card-file:focus {
    border-color: #c0ccda;
}

.card-file .card-body {
    padding: 15px 0 0;
}

.card-file .card-footer {
    font-size: 11px;
    color: #c0ccda;
    padding: 10px 0 0;
    border-top-width: 0;
    background-color: transparent;
}

.card-file h6 {
    margin-bottom: 0;
}

    .card-file h6 a {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        display: block;
        width: 100%;
    }

.card-file p {
    margin-bottom: 0;
    color: #475362;
}

.card-file span {
    font-size: 12px;
    color: #8392a5;
}

.card-file-thumb {
    background-color: #f5f6fa;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

@media (min-width: 576px) {
    .card-file-thumb {
        height: 100px;
        font-size: 40px;
    }
}

@media (min-width: 992px) {
    .card-file-thumb {
        height: 120px;
        font-size: 48px;
    }
}

.media-folder {
    position: relative;
    border: 1px solid rgba(72, 94, 144, 0.16);
    padding: 10px 12px;
    background-color: #fff;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .media-folder {
        transition: none;
    }
}

.media-folder:hover, .media-folder:focus {
    border-color: #c0ccda;
}

.media-folder > svg {
    width: 42px;
    height: 42px;
    stroke-width: 1.5px;
    color: #0168fa;
    opacity: .7;
}

.media-folder .media-body {
    margin-top: 5px;
    margin-left: 10px;
}

    .media-folder .media-body h6 {
        margin-bottom: 1px;
    }

    .media-folder .media-body span {
        font-size: 12px;
        color: #8392a5;
        display: block;
    }

@media (min-width: 992px) {
    .aside-silqu + .content {
        margin-left: 60px;
    }
}
 /*menu tabs*/


.menu-tabs {
    margin: 0;
    white-space: nowrap;
    padding: 0;
}

    .menu-tabs li {
        display: inline-block;
    }

        .menu-tabs li a,
        .menu-tabs li span,
        .menu-tabs li span label,
        .menu-tabs li button {
            display: block;
            position: relative;
            padding: 14px 2px;
            margin: 0 14px;
            background: transparent;
            border: none;
            cursor: pointer;
            color: #70757d;
            font-size: 15px;
            line-height: 20px;
            transition: color 0.2s ease-in;
            outline: none;
        }

            .menu-tabs li a:after,
            .menu-tabs li span:after,
            .menu-tabs li span label:after,
            .menu-tabs li button:after {
                position: absolute;
                bottom: 0;
                left: 50%;
                display: block;
                content: "";
                height: 2px;
                width: 0;
                transition: ease-in all .15s;
            }

        .menu-tabs li:first-child a {
            margin-left: 0;
        }


        .menu-tabs li.active a:after,
        .menu-tabs li.active span:after,
        .menu-tabs li.active span label:after,
        .menu-tabs li.active button:after {
            width: 100%;
            margin-left: -50%;
            background-color: #007bfc;
        }

.tabs-container > .menu-tabs {
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    transition: all ease-in .15s;
}

.menu-tabs li a {
    color: #666B80;
    font-size: 12px;
    text-transform: uppercase;
}
.img-200{
    max-height:100px;  
    margin:3px;
}
.main-content {
    padding: 15px;
}

/*subscription bar*/
body {
    background: #eee;
    margin-top: 20px;
}

/* ===== PRICING PAGE ===== */
.price-tabs {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);
    box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);
    display: inline-block;
    padding: 7px;
    border-radius: 40px;
    border: 1px solid #00b5ec;
    margin-bottom: 45px;
}

@media (min-width: 768px) {
    .price-tabs {
        margin-bottom: 60px;
    }
}

.price-tabs .nav-link {
    color: #00b5ec;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    padding: 12px 35px;
    display: inline-block;
    text-transform: capitalize;
    border-radius: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .price-tabs .nav-link {
        padding: 12px 40px;
    }
}

.price-tabs .nav-link.active {
    background-color: #00b5ec;
    color: #fff;
}

.price-item {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    border-radius: 10px;
}

@media (min-width: 768px) {
    .price-item {
        margin: 0 20px;
        padding-top: 20px;
    }
}

.price-item .price-top {
    -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    padding: 50px 0 25px;
    background-color: #00b5ec;
    border-radius: 10px;
    position: relative;
    z-index: 0;
    margin-bottom: 33px;
}

@media (min-width: 768px) {
    .price-item .price-top {
        margin: 0 -20px;
        border-radius: 20px;
    }
}

.price-item .price-top:after {
    height: 50px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    background-color: #00b5ec;
    position: absolute;
    content: '';
    left: 0;
    bottom: -17px;
    z-index: -1;
    -webkit-transform: skewY(5deg);
    transform: skewY(5deg);
    -webkit-box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
    box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
}

@media (min-width: 768px) {
    .price-item .price-top:after {
        border-radius: 0 0 20px 20px;
    }
}

.price-item .price-top * {
    color: #fff;
}

.price-item .price-top h2 {
    font-weight: 700;
}

    .price-item .price-top h2 sup {
        top: 13px;
        left: -5px;
        font-size: 0.35em;
        font-weight: 500;
        vertical-align: top;
    }

.price-item .price-content {
    padding: 30px;
    padding-bottom: 40px;
}

    .price-item .price-content li {
        position: relative;
        margin-bottom: 15px;
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
    }

@media (min-width: 992px) {
    .price-item .price-content li {
        padding-left: 28px;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .price-item .price-content li i {
        position: absolute;
        left: 0;
        top: 3px;
    }
}

.price-item .price-content .zmdi-check {
    color: #28a745;
}

.price-item .price-content .zmdi-close {
    color: #f00;
}

.popular {
    background-color: #00b5ec;
}

    .popular .price-top {
        background-color: #fff;
    }

        .popular .price-top:after {
            background-color: #fff;
        }

        .popular .price-top h4 {
            color: #101f41;
        }

        .popular .price-top h2, .popular .price-top span, .popular .price-top sup {
            color: #00b5ec;
        }

    .popular .price-content ul *,
    .popular .price-content ul .zmdi-close, .popular .price-content ul .zmdi-check {
        color: #fff !important;
    }