@charset "utf-8";
/* CSS Document */

/* Fonts */
@font-face {
	font-family: 'geometria';
    src: url('../webfonts/geometria-light-webfont.eot');
    src: url('../webfonts/geometria-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../webfonts/geometria-light-webfont.woff') format('woff'),
         url('../webfonts/geometria-light-webfont.ttf') format('truetype'),
         url('../webfonts/geometria-light-webfont.svg#geometria') format('svg');
    font-weight: 100;
    font-style: normal;
}
@font-face {
	font-family: 'geometria';
    src: url('../webfonts/geometria-medium-webfont.eot');
    src: url('../webfonts/geometria-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('../webfonts/geometria-medium-webfont.woff') format('woff'),
         url('../webfonts/geometria-medium-webfont.ttf') format('truetype'),
         url('../webfonts/geometria-medium-webfont.svg#geometria') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'geometria';
    src: url('../webfonts/geometria_bold-webfont.eot');
    src: url('../webfonts/geometria_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../webfonts/geometria_bold-webfont.woff') format('woff'),
         url('../webfonts/geometria_bold-webfont.ttf') format('truetype'),
         url('../webfonts/geometria_bold-webfont.svg#geometria') format('svg');
    font-weight: bold;
    font-style: normal;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

body{
    background-color: #f7f7f7;
    line-height: 1.5;
}

.login-page{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.main.login-page{
    padding-top: 0;
}
.login-box{
    width: 400px;
    max-width: 90%;
    padding: 30px 40px;
    background-color: #fff;
    border: 1px solid #aeaeae;
    border-radius: 10px;
}


[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
    display: inline;
    width: auto;
    position: relative;
    cursor:pointer;
    margin: 0;
}
[type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label {  
  position: relative;
  overflow: hidden;
  padding-left: 15px;
  padding-top: 7px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  -moz-user-select: none; /* mozilla browsers */
  -khtml-user-select: none; /* webkit (konqueror) browsers */
  -ms-user-select: none; /* IE10+ */
}
input[type=checkbox]:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: -3px;
    left: 9999px;
    background-color:#fff;
    border: 1px solid #aeaeae;
    border-radius: 4px;
}
input[type=checkbox]:checked:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #2fb3c7;
    background-color:#2fb3c7;
}
input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: -1px;
    left: 10006px;
}

header{
    width: 100%;
    background-color: #fff;
    padding: 0px 20px;
    box-shadow: 0px 0px 5px #00000030;
    font-weight: 500;
    z-index: 10;
    position: fixed;
    line-height: 52px;
}
header .left{
    width: 50%;
    float: left;
    font-size: 1.4em;
}
header .right{
    width: 50%;
    float: left;
    text-align: right;
}

.menu-icon{
    margin-right: 25px;
}
.login-name span{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #eeeeee;
    text-align: center;
    line-height: 35px;
    position: relative;
    top: 1px;
    display: inline-block;
    margin-right: 6px;
    font-weight: normal;
}
div.main{
    width: 100%;
    overflow: auto;
    /*height: 100%;*/
    padding-top: 50px;
}
nav{
    width: 260px;
    height: 100%;
    overflow: auto;
    border-right: 1px solid #aeaeae;
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 60px;
    float: left;
    position: fixed;
    left: 0;
    top: 50px;
}
nav ul li a{
    width: 100%;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    line-height: 2.4em;
}
nav ul li a:hover{
    background-color: #fafafa;
}
nav ul li a i.fa{
    font-size: 1.3em;
    min-width: 30px;
}
nav .menuspacer{
    padding: 0 20px 5px 20px;
    margin-top: 10px;
    width: 100%;
}
.shrink nav{
    width: 60px;
    overflow-x: hidden;
}
.shrink nav ul li span, .shrink nav .menuspacer{
    display: none;
}
.shrink nav  ul li a{
    display: block;
    font-size: 1.1em;
}
.content{
    width: calc(100% - 260px);
    overflow: auto;
    padding: 30px 50px;
    float: right;
}
.shrink .content{
    width: calc(100% - 60px);
    overflow: auto;
}
.section-title{
    padding-bottom: 10px;
}
.section-title h1,.section-title h2,.section-title h3{
    font-weight: 100;
    border-bottom: 1px solid #aeaeae;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.section-title .title span{
    position: relative;
    top: 2px;
}
.section-title .title div i.fa{
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    background-color: #fff;
    font-size: 1.3rem;
    margin-right: 10px;
    border-radius: 5px;
}
.section-title .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-title .title .btn{
    width: auto;
}
.message{
    font-weight: 100;
    font-size: 1rem;
}
table th:first-child{
    border-top-left-radius: 4px;
}
table th:last-child{
    border-top-right-radius: 4px;
}
.action-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.action-buttons li{
    list-style: none;
    padding: 0px 3px;
    position: relative;
}
.action-buttons.column li{
    padding: 3px 0;
}
.form-wrap.toggle{
    display: none;
}
.cke_screen_reader_only{
    display: none;
}

.label-wrap{
    position: relative;
}
.label-wrap label{
    font-size: 0.9rem;
    position: absolute;
    left: 0px;
    color: #888;
    top: 0px;
    transition: 0.2s;
    opacity: 0;
    line-height: 0;
}
.label-wrap > input:not(:placeholder-shown) + label, .label-wrap > select:valid + label, 
.label-wrap > textarea:not(:placeholder-shown) + label, .label-wrap > .select2-container--below + label, 
.label-wrap.active label
{
    opacity: 1;  /* To visually hide the label's pseudoelement */
    pointer-events: none;
    top: -15px;
    font-size: 0.7rem;
    margin: 0;
    line-height: normal;
    color: #222222;
}
.form-wrap.single .form-row{
    padding-bottom: 0;
}
.form-wrap.single input,.form-row.single select,.form-wrap.single textarea{
    margin-bottom: 25px;
}
.input-image-wrap{
    width: 100%;
    background-color: #fff;
    height: 110px;
    border: 1px solid #aeaeae;
    border-radius: 4px;
    margin-bottom: 25px;
    text-align: center;
}
.input-image-wrap img{
    max-width: 100%;
    max-height: 100%;
}
.item-image{
    margin-top: 5px;
    height: 184px;
    margin-bottom: 30px;
}
.data-table{
    overflow-x: auto;
}
.select2-container--default .select2-selection--single{
    height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    padding: 6px 10px 5px 10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    margin-top: 25%;
}
.select2-container .select2-selection--multiple{
    min-height: 41px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
    padding: 5px 5px 3px 5px;
}
[aria-disabled="true"]{
    color: #aeaeae !important;
}
[aria-readonly="true"]{
    /*color: #aeaeae !important;*/
}
table form ul.form-row{
    background-color: #f1f1f1;
    padding: 5px 5px 10px 5px;
    width: 100%;
    border: 1px solid #e1e1e1;
}
table form ul li{
    list-style: none;
    padding: 0;
}
table form .form-row, table form .form-item{
    padding: 0;
    margin: 0;
}

.form-row.steps-table{
    background-color: #f1f1f1;
    width: 100%;
    border: 1px solid #e1e1e1;
}
.steps-table table tr{
    background-color: transparent;
}
.steps-table table tr td{
    border: 0;
}
.steps-table input[type="checkbox"]{
    top: -6px;
}
.steps-table input[type="checkbox"]+ label{
    padding-top: 3px;
    max-width: 200px;
    height: 31px;
    line-height: 14px;
}
.form-row.steps-table.pad{
    padding: 10px;
}
.steps-table td .one-fourth{
    padding-top: 10px;
}



/*front end*/
.feedback-wrap{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.feedback-wrap .logo{
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
}
.feedback-wrap .logo img{
    width: 130px;
}
.feedback-wrap h1{
    margin-bottom: 10px;
    color: #222222;
}
.feedback{
    padding: 30px 30px 30px 30px;
    border: 4px solid #2fb3e7;
    border-radius:20px;
    background-color: #222222;
    color: #fff;
    max-width: 94%;
}
.feedback textarea{
    border-radius: 10px;
    min-height: 160px;
    font-size: 1.2em;
    font-weight: 100;
}
.feedback input[type="text"]{
    border-radius: 10px;
    padding: 14px 10px;
    font-size: 1.2em;
}
.feedback .btn{
    font-size: 1.4em;
    border-radius: 10px;
    margin-top: 10px;
    line-height: 1.8em;
}
.rate {
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:80px;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '★ ';
}
.rate > input:checked ~ label {
    color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

.order-status{
    width: 70%;
    margin: 20px;
    float: left;
}
.order-inbox{
    width: calc(30% - 80px);
    margin: 20px;
    float: right;
    border: 1px solid #aeaeae;
    height: calc(100% - 40px);
    border-radius: 6px;
    box-shadow: 0px 0px 5px #ccc;
    position: fixed;
    right: 0px;
    overflow: hidden;
}
.order-inbox.admin{
    position: fixed;
    top: 50px;
    z-index: 10;
    height: calc(100% - 90px);
}
.message-wrap{
    background-image: url(../../assets/images/inbox-bg.jpg);
    background-size: cover;
    background-position: center center;
    height: calc(100% - 209px);
    padding: 10px;
    overflow: auto;
}
.message-wrap ul li{
    width: 100%;
    padding: 10px 0;
}
.message-wrap ul li .message, .admin .message-wrap ul li .message.customer{
    width: 80%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 1.2em;
    line-height: 1.3em;
    float: none;
}
.message-wrap ul li .message.customer, .admin .message-wrap ul li .message{
    background-color: #16b4ef;
    float: right;
}
.order-status li{
    list-style: none;
}
.order-info-block li{
    
    width: 32%;
    background-color: #fcfcfc;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #ccc;
    overflow: hidden;
}
.order-info-block li table tr{
    background-color: transparent;
}
.order-info-block li table td{
    border: 0;
}
.order-info-block li table td:first-child{
    width: 40%;
}
.block-title{
    background-color: #16b4ef;
    color: #fff;
    padding: 5px 20px;
    font-size: 1.6em;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #ccc;
}
.block-title i{
    position: relative;
    top: 2px;
    margin-right: 10px;
}
.block-title .fa-circle-xmark{
    margin-right: 0;
}
.block-title .close-inbox{
    color: #fff;
}
.block-inner{
    padding: 20px 2px;
}
.order-inbox .block-title{
    border-radius: 0;
    box-shadow:none;
}
.order-inbox textarea{
    height: 133px;
    border: 0;
    border-top: 1px solid #aeaeae;
    border-radius: 0;
    outline: 0;
    resize: none;
    background-color: #f7f7f7;
}
.order-inbox form{
    line-height: 0;
}
.order-inbox .btn{
    border-radius: 0;
}
.progress-block{
    padding: 20px 0px;
}
.progress-block h3{
    padding: 0 20px;
}
.progress-block .timeline{
    padding: 0px 20px 20px 20px;
}
.progress-block  li{
    padding-left: 90px;
    position: relative;
    line-height: 30px;
    margin: 20px 0;
}
.progress-block  li ul li{
    line-height: 20px;
}
.progress-block  li:before{
    content: "\f00c";
    font-family: 'Font Awesome 6 Free';
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #4dd555;
    box-shadow: 0px 0px 15px #47ff52;
    position: absolute;
    left: 0px;
    top: -2px;
    color: #fff;
    text-align: center;
    font-size: 1.3em;
    line-height: 30px;
}
.progress-block li ul li:before{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.9em;
    line-height: 20px;
}
.progress-block  li:after{
    content: "";
    width: 50px;
    height: 1px;
    border-top: 1px solid #aeaeae;
    position: absolute;
    left: 30px;
    top: 14px;
}
.progress-block li ul li:after{
    left: 20px;
    top: 9px;
}
.progress-block  li.pending:before{
    content: "\f141";
    background-color: #ffaa11;
    box-shadow: 0px 0px 15px #ffdea4;
}
.btn.spc{
    font-size: 0.85em;
    line-height: 2.5em !important;
    width: 100%;
    padding: 0 4px !important;
}
.dashboard ul{
    width: 80%;
    display: flex;
    flex-basis: 0;
    flex-wrap: wrap;
}
.dashboard ul li{
    padding: 10px;
    list-style: none;
}
.dashboard ul li .liwrap{
    background-color: #16b4ef;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.dashboard ul li span{
    font-size: 3em;
}
.dashboard .liwrap a{
    color: #fff;
}
.dashboard .liwrap:hover{
    background-color: #000;
}
.counter{
    font-size: 0.7em;
    width: 16px;
    height: 16px;
    line-height: 17px;
    position: absolute;
    top: -4px;
    right: -7px;
    background-color: brown;
    color: #fff;
    border-radius: 50%;
    font-weight: normal;
    text-align: center;
}
.fa-left-right{
    cursor: pointer;
    float: right;
    font-size: 1.5em;
}

pre{
    padding-left: 100px;
    padding-top: 50px;
}

.form-item > .form-item{
    padding-top:0;
    padding-bottom: 0;
}

@media only screen and (max-width: 540px) {
    .rate:not(:checked) > label {
        font-size:50px;
    }
}


