
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

:root{
	--default-padding: 20px;
	--aside-width: calc(400px - 80px);
	--main-width: calc(100% - var(--aside-width) - 80px);
}

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

body{
	margin:0;
	padding:0;

	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
}

img{
	max-width: 100%;
}

a{
	color:#117383;
	text-decoration: none;
}

hr{
	border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    clear:both;
	}


    .multiselect {
        width: 100%;
        font-size: 12px;
        position: absolute;
        background:#fff;
        z-index: 1;
      }
      
      .selectBox {
        position: relative;
      }
      
      .selectBox select {
        width: 100%;
        font-weight: bold;
      }
      
      .overSelect {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
      }
      
      #checkboxes {
        display: none;
        border: 1px #dadada solid;
      }
      
      #checkboxes label {
        display: block;
      }
      
      #checkboxes label:hover {
        background-color: #1e90ff;
      }

header{
    text-align: center;
    background: #f1f1f1;
}

header .logo{
    float:left;
    width: 150px;
    vertical-align: top;
    padding:5px 10px;
}

header nav{
    float:right;
}

header nav .item{
    float:left;
    padding: 10px 20px;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 0 0 5px 5px;
    font-weight: bold;
    transition: .3s;
}
header nav .item:hover{
    background:#fff;
    transition: .3s;
}
header nav .item.on,header nav .item:active{
    background: #20b0da;
    color: #fff;
}


.wrap{
	position:relative;
    margin-left:auto;
	margin-right:auto;
	padding:0 20px;
	word-wrap: break-word;
	overflow-y: hidden;
}


.wrap img{
	max-width:100% !important;
	height: auto !important;
	}

table.list thead tr td{
    font-weight: bold;
    border-bottom: 1px #f4f4f4 solid;
}

table.list tbody tr td{
    border-bottom: 1px #f4f4f4 solid;
}

table.list tbody tr.inactive td{
    color: rgb(194, 194, 194);
}

table thead tr td{
    font-weight: bold;
}

.button-slider{
    transition: .3s;
    float:left;
    cursor: pointer;
    padding:10px 20px;
    background:#f1f1f1;
    color:#000;
    font-weight: bold;
}
.button-slider:hover{
    transition: .3s;
    background:#000;
    color:#f1f1f1;
}
.button-slider:active,.button-slider.on{
    background:#20b0da;
    color:#f1f1f1;
}
.button-slider.first{
    border-radius: 5px 0 0 5px;
}

.button-slider.last{
    border-radius: 0 5px 5px 0;
}

.button{
    transition: .3s;
    display: inline-block;
    cursor: pointer;
    padding:10px 20px;
    border-radius: 5px;
    background:#f1f1f1;
    color:#000;
    font-weight: bold;
}

.button.inlist{
    padding:5px 10px;
    border-radius: 4px;
    font-size: 10px;
}

.button:hover{
    transition: .3s;
    background:#000;
    color:#f1f1f1;
}
.button:active,.button.on{
    background:rgb(114, 0, 236);
    color:#f1f1f1;
}



.button.delete{
    background:#9a0000;
    color:rgb(255, 255, 255);
}

.button.delete:hover{
    transition: .3s;
    background:rgb(213, 0, 0);
    color:#f1f1f1;
}
.button.delete:active{
    background:rgb(255, 0, 0);
    color:#f1f1f1;
}


form input[type=text],form input[type=email],form input[type=password],form input[type=number],form select, textarea, input[type=text], input[type=search]{
    padding:5px;
    border-radius: 5px;
    border:1px #d1d1d1 solid;
    width: calc(100% - 10px);
}

form input[type=button],form input[type=submit]{
    transition: .3s;
    padding:10px 20px;
    border-radius: 5px;
    background:#20b0da;
    color:#fff;
    border:none;
    font-weight: bold;
    font-size: 12px;
}
form input[type=button]:hover,form input[type=submit]:hover{
    transition: .3s;
    background:#000;
    color:#f1f1f1;
}
form input[type=button]:active,form input[type=submit]:active{
    background:rgb(114, 0, 236);
    color:#f1f1f1;
}

#loading{
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;


}

.flash{
    background: rgba(255,255,255,0);
    animation: flash 3s;
    animation-delay: 0s;
    animation-fill-mode: forwards;

}


.sendingProgressBar{
    z-index: 100;
    display: none;
    position: fixed;
    width:100%;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,0.4);
}
.sendingProgressBar .inside{
    position: absolute;
    top: 40%;
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
    width: 100px;
    height: 180px;
    background-image: url("/img/progress1.gif");
    background-position: center center;
    background-size: contain;
    color: #fff;
}

@keyframes flash {
    from { background: #bdde4d; }
    to { background: rgba(255,255,255,0); }
}



.alert{
	position: fixed;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.4);
	z-index: 10;
	
	opacity: 1;
	animation: fadeIn 1s;
	animation-delay: 2s;
	animation-fill-mode: forwards;
	display: block;
}
@keyframes fadeIn {
	from { opacity: 1; }
	to { opacity: 0;visibility: hidden; }
}
.displaynone{
	display: none;
}

.alert .panel{
	position: absolute;
	max-width: 400px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	padding:20px 30px;
	background: #fff;
	text-align: center;
}

.alert .panel .title{
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
}
.alert .panel .title.icon{
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center left;
	padding-left:30px;
}
.alert .panel .title.icon.check{
	background-image: url("/img/icons/check_64.png");
}
.alert .panel .title.icon.error{
	background-image: url("/img/icons/error_64.png");
}

.alert .panel .content{
	margin:10px 0 0 0;
}

.scroll{
	overflow: auto;
}


.ok{
	background-color:#e1e1e1;
	}


.actionMessWrap{
	position: relative;
	padding:0px;
}

.actionMess{
	padding:10px;
	margin-bottom:1px;
	background: #f1f1f1;
	color: #000;
}
.actionMess.succ{
	display:block;
	background: green;
	color: #fff;
}
.actionMess.err{
	display:block;
	background: red;
	color: #fff;
}

table tr.prodImageRow td{
    border-bottom: 1px #f1f1f1 solid;
}

.prodImage{
    width: 25px;
    height: 25px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.catImage{
    width: 100px;
    height: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

form.standard .left,form.standard .right{
    float:left;
    width:calc(50% - 20px);
    padding:10px;
}

.leftright50{
    float:left;
    width: calc(50% - 20px);
    padding-right:10px;
    vertical-align: top;
}

.buttonPrint{
    position: absolute;
    top:25px;
    right:25px;
    width:20px;
    height:20px;
    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/img/icons/print.png");
}

.orderStatus{
    display: inline-block;
    padding:5px 10px;
    font-weight: bold;
    border-radius: 5px;
}

.orderStatus.pending{
    background: #ca7805;
    color:#fff;
}
.orderStatus.confirmed{
    background: #5510ca;
    color:#fff;
}
.orderStatus.shipped{
    background: #66a401;
    color:#fff;
}
.orderStatus.cancelled{
    background: #d60000;
    color:#fff;
}

.tabs .tabItem{
    float:left;
    border-radius: 5px;
    border: 1px #f1f1f1 solid;
    padding:5px 10px;
    margin: 0 5px 0 0;
    cursor: pointer;
    transition: .3s;
}
.tabs .tabItem:hover{
    border: 1px #a309c9 solid;
    transition: .3s;
}

.tabs .tabItem.on{
    border: 1px #949494 solid;
}
