body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #708690;
    height: 100vh;
    color: #fff;
}

.menu-session {
    position: fixed;
    top: 0;
    right: 150px;
    height: 30px;
    width: 200px;
    background-color: #3d5561;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 1;
    text-align: center;
}

.menu-bar {
    position: fixed;
    width: 200px;
    height: 100vh;
    background-color: #3d5561;
    transition: opacity 1s ease-out;
}

.menu-bar.menu-bar-hide {
    opacity: 0;
}

.menu-bar.menu-bar-hide-w {
    width: 0;
}

.content {
    position: relative;
    float: right;
    width: calc(100% - 230px);
    background-color: #708690;
    padding: 15px;
    transition: width 2s ease-out;
    max-height: calc(100vh - 30px);
}

.bt-card {
    --background: #f7f7f7;
    background: #4f6d7b;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
    border: none;
    padding: 10px;
    margin: 25px 60px;
    transition: height 0.5s;
    overflow: hidden;
}

.bt-card.datos-cliente { height: 360px; }
.bt-card.lineas-pedido { height: 240px; }
.bt-card.opciones { height: 50px; }
.bt-card.resumen-presupuesto { height: 320px; }

.bt-position {
    position: relative;
    float: left;
    padding: 0 10px;
}

.bt-position-right {
    position: relative;
    float: right;
    padding: 0 10px;
}

.bt-all-space { width:100%; }
.bt-row { width: calc(100% - 30px); padding:5px; margin:10px; }
.bt-100 { width: calc(100% - 20px); }
.bt-90 { width: calc(90% - 20px); }
.bt-80 { width: calc(80% - 20px); }
.bt-70 { width: calc(70% - 20px); }
.bt-60 { width: calc(60% - 20px); }
.bt-50 { width: calc(50% - 20px); }
.bt-40 { width: calc(40% - 20px); }
.bt-30 { width: calc(30% - 20px); }
.bt-20 { width: calc(20% - 20px); }
.bt-10 { width: calc(10% - 20px); }
.bt-top-5 { top: 5px; }
.bt-top-10 { top: 10px; }
.bt-top-20 { top: 20px; }
.bt-top-30 { top: 30px; }
.bt-top-40 { top: 40px; }
.bt-top-50 { top: 50px; }
.bt-hidden { display: none; }
.bt-right { text-align: right; }
.bt-left { text-align: left; }
.bt-center { text-align: center; }
.bt-margins-less { margin: 0; }
.bt-paddings-less { padding: 0; }
.bt-uppercase { text-transform: uppercase; }
hr { visibility: hidden; }
i.material-icons { cursor: pointer; }
i.material-icons:hover { color: #ff9800; }
i.fas { cursor: pointer; font-size: 20px; }
i.fas:hover { color: #ff9800; }
.bt-selected { color: #ff9800; }
.bt-titulo-columna { text-decoration: underline; font-weight: 600; }
.bt-100-global-button { width: calc(100% - 100px); padding-left: 50px; }
.bt-overflow-auto { overflow: auto; }
.bt-non-scroll { overflow: hidden!important ;}
.bt-icons { color: #FFF; }
.bt-scroll::-webkit-scrollbar { width: 10px; height: 10px; }
.bt-scroll::-webkit-scrollbar-thumb { background: #3d5561; border-radius: 4px; }
.bt-scroll::-webkit-scrollbar-thumb:active { background-color: #3d5561; }
.bt-scroll::-webkit-scrollbar-track { background: #8ca7b3; border-radius: 4px; }
.bt-notifications.bt-visible { top: 20px; }
.bt-notifications.bt-success { background-color: #43ac6a; }
.bt-notifications.bt-warning { background-color: #e99002; }
.bt-notifications.bt-error { background-color: #f04124; }
.bt-notifications.bt-info { background-color: #5bc0de; }
#notifications span { height: 100%; float: left; text-align: center; line-height: 70px; }
#notificationsIcon { width: 60px; font-size: 37px; }
#notificationsText { width: calc(100% - 120px); }
#notificationsClose { width: 60px; cursor: pointer; }

input {
    width: 100%;
    height: 20px;
    font-size: 14px;
    margin-top: 5px;
    background-color: #263942;
    color: #fff;
    border: 0;
    padding-left: 5px;
}

input[type='checkbox'] {
    width: inherit;
    height: 20px;
    width: 20px;
    border: 0;
}

textarea {
    margin-top: 5px;
    background-color: #263942;
    border: 0;
    color: #fff;
}

button {
    background-color: #263942;
    color: #fff;
    height: 28px;
    width: 75px;
    font-size: 14px;
    border-radius: 10px;
}
button.bt-btn-big { width: 126px; }
button.bt-btn-big-long { width: 165px; }
button:hover { background-color: #ff9800; color: #000; cursor: pointer; }
button.bt-active { background-color: #ff9800; color: #000; }

.bt-user {
    font-size: 15px;
    line-height: 27px;
}

.bt-notifications {
    position: fixed;
    z-index: 1;
    width: 600px;
    height: 70px;
    top: -100px;
    left: 50%;
    margin-left: -300px;
    /*background-color: #AE9269;*/
    transition: top 2s;
    color: #FFF;
    font-weight: 700;
    box-shadow: 0 8px 6px -6px black;
}




/***************** MENU *****************/
ul{
    list-style-type: none;
    padding-inline-start: 20px;
}

ul li {
    margin: 15px 0;
    font-weight: 700;
}

ul li:hover {
    color: #ff9800;
    cursor: pointer;
}

/***************** CUSTOMERS *****************/
.bt-card.customer-search {
    height: 130px;
}


/***************** DASHBOARD *****************/
.bt-card.dash-reviews {
    height: 380px;
    overflow: auto;
}

.bt-card.dash-last-budgets,
.bt-card.dash-bestsellers {
    height: 50px;
    overflow: auto;
} 

/***************** BUDGETS *****************/
.bt-card.budget-search {
    height: 130px;
}

/***************** NEW/EDIT CUSTOMERS *****************/
/*.bt-card.datos-newcustomer {
    height: 640px;
}*/

.bt-card.bt-desgloses {
    height: 50px;
}

.bt-unsubscribe-selected {
    color: #ff9800;
}

/***************** LOGIN *****************/
body.bt-session-bg {
    background-image: url("sessionBG.jpg");
    width: 100vw;
    height: 100vh;
}

.bt-session {
    background-color: rgba(0,0,0,0.9);
    border-radius: 25px;
    height: 100%;
    width: 100%;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    backdrop-filter: blur;
}

.bt-session-container {
    position: fixed;
    height: 250px;
    width: 500px;
    top: 50%;
    margin-top: -125px;
    left: 50%;
    margin-left: -250px;

}

.bt-session-inputs {
    position: relative;
    margin-top: -200px;
    width: 300px;
    left: 50%;
    margin-left: -150px;
}

.bt-session-inputs input{
    height: 25px;
    font-size: 14px;
    margin-top: 15px;
    background-color: #cecece;
    color: #000;
    border: 2px solid #cecece;
}

.bt-session-inputs button {
    width: 150px;
    margin-top: 20px;
    float: right;
    text-transform: uppercase;
    border: 0;
    border-radius: 5px;
}

/***************** 404 *****************/

.bt-session-404 {
    position: relative;
    margin-top: -215px;
    width: 100%;
    left: 50%;
    margin-left: -250px;
    text-align: center;
}

.bt-session-404 img {
    height: 120px;
    width: auto;
}

.bt-session-404 span {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 5px;
    font-size: 50px;
}

/*MOBILE*/
/* WITHOUTMENU*/
body.bt-mobile.menu-hide .content {
    width: calc(100% - 30px);
}

body.bt-mobile.menu-hide .bt-card {
    margin: 0;
}
body.bt-mobile.menu-hide #search-text {
    height: 50px;
    font-size: 30px;
}

body.bt-mobile.menu-hide .bt-card.customer-search button {
    height: 60px;
}

body.bt-mobile.menu-hide .bt-card.customer-search button#addUnsubscribe {
    max-width: 96px;
}

body.bt-mobile.menu-hide .bt-card.customer-results > div:nth-child(2) > span:nth-child(1) {
    display: none;
}

body.bt-mobile.menu-hide .bt-card.customer-results > div:nth-child(3) > span:nth-child(1) {
    display: none;
}

body.bt-mobile.menu-hide .bt-10 {
    width: initial;
}

/*WITHMENU*/
body.bt-mobile .bt-card {
    max-height: 50vh;
    margin-bottom: 16px !important;
    margin: 25px 10px;
}

body.bt-mobile .bt-card.customer-search form > div:nth-child(1){
    display: none;
}