@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700;800;900&display=swap');

body{
    margin: 0px;
    padding: 0px;
    font-family: "Work Sans", sans-serif;
    line-height: 1.7;
    font-size: 15px;
    background-color: #283142;
    color: #fff;
}

body::-webkit-scrollbar, .custom-modal-wrapper::-webkit-scrollbar{
    width: 5px;
}

body::-webkit-scrollbar-track, .custom-modal-wrapper::-webkit-scrollbar-track{
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb, .custom-modal-wrapper::-webkit-scrollbar-thumb{
    background: #888;
}

body::-webkit-scrollbar-thumb:hover, .custom-modal-wrapper::-webkit-scrollbar-thumb:hover{
    background: #555;
}

header.navbar-default{
    border: none;
    border-radius: 0px;
    background-color: #1c2632;
    border-bottom: 1px solid #424b5a;
}

.navbar-left, .navbar-right{
    margin-left: 10px;
    margin-right: 0px;
}

.navbar-default .navbar-nav > li > a{
    color: #fff;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 10px;
    padding-left: 0px;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus{
    background: none;
    color: #21ADE3;
    text-decoration: none;
}

.navbar-brand{
    padding: 0px;
    padding-left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.navbar-brand > img{
    height: 40px;
    margin-top: 5px;
}

.dropdown .icofont-rounded-down{
    display: inline-block;
    margin-left: 3px;
}

.dropdown .icofont-rounded-right{
    display: inline-block;
    margin-left: 15px;
    float: right;
    margin-top: 5px;
}

.navbar-default .navbar-toggle{
    margin-top: 20px;
}

.drop-down-menu{
    position: absolute;
    display: none;
    width: 270px;
    list-style: none;
    padding: 10px 0px;
    margin-top: -20px;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    border: 1px solid #ddd;
    border-top: none;
}

.drop-down-menu > li > a{
    display: block;
    color: #333;
    text-decoration: none;
    padding: 5px 15px;
    font-size: 14px;
}

.drop-down-menu > li > a:hover, .drop-down-menu > li > a:focus{
    color: #21ADE3;
}

#login-btn, #register-btn{
    padding-left: 10px;
    border: 1px solid transparent;
}

#login-btn:hover, #register-btn:hover{
    background-color: #21ADE3;
    color: #fff;
    border: 1px solid transparent;
}

#register-btn:hover{
    border: 1px solid #1e1d1d;
}

#login-btn{
    border: 1px solid #fff;
}

#register-btn{
    background-color: #ED3237;
}

.container-fluid{
    padding-left: 50px;
    padding-right: 50px;
}

h1, h2, h3{
    font-weight: bold;
}

a{
    color: #ED3237;
}

a:hover{
    color: #d35400;
}

.btn{
    outline: none;
}

section{
    padding-top: 100px;
    padding-bottom: 100px;
}

section h1{
    color: #ec3722;
}

.table{
    border: 1px solid #ddd;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th{
    border: none;
    padding: 15px;
    padding-bottom: 5px;
}

.table > thead > tr{
    border-bottom: 1px solid #ddd;
}

.table > tfoot > tr{
    border-top: 1px solid #ddd;
}

.cursor-pointer:hover{
    cursor: pointer;
}

.modal-header, .modal-footer, aside, .bg-light, .pager li > a{
    background-color: #283142;
}

.modal-header, .modal-footer{
    border: none;
}

.modal-header{
    border-radius: 8px 8px 0px 0px;
}

.modal-content{
    background-color: #1c2632;
}

.modal-footer{
    border-radius: 0px 0px 8px 8px;
}

.close{
    text-shadow: none;
    color: #fff;
}

.marketplace{
    background-color: #1c2632;
    padding: 25px;
    border-radius: 15px;
}

.mp-heading{
    color: #e9e5e4;
    margin-bottom: 30px;
}

.mp-product-name{
    font-size: 17px;
    color: #d07a57;
}

.mp-product-description{
    font-size: 14px;
    text-align: justify;
}

.youtube-container{
    position: relative;
    height: 450px;
    overflow: hidden;
}

.youtube-container > iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px){
    .marketplace{
        height: 410px;
    }
}

@media (min-width: 992px){
    .navbar-left{
        margin-left: 30px;
    }
    
    .marketplace{
        height: 280px;
    }
    
    .mp-product-name{
        margin-top: 0px;
    }
}

@media (min-width: 1200px){
    
}

@media (max-width: 767px){
    .mp-heading{
        margin-top: 0px;
    }

    .youtube-container{
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }

    .youtube-container > iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 991px){
    
}

@media (max-width: 1199px){
    
}