/* font-family: "LatoBold"; */
/* font-family: "LatoBold"; */
@font-face {
    font-family: "LatoBold";
    src: url('../font/LatoBold/Lato-Bold.eot');
    src: url('../font/LatoBold/Lato-Bold.eot?#iefix') format('embedded-opentype'), url('../font/LatoBold/Lato-Bold.woff2') format('woff2'), url('../font/LatoBold/Lato-Bold.woff') format('woff'), url('../font/LatoBold/Lato-Bold.ttf') format('truetype'), url('../font/LatoBold/Lato-Bold.svg#Lato-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "LatoLight";
    src: url('../font/LatoItalic/Lato-Light.eot');
    src: url('../font/LatoItalic/Lato-Light.eot?#iefix') format('embedded-opentype'), url('../font/LatoItalic/Lato-Light.woff2') format('woff2'), url('../font/LatoItalic/Lato-Light.woff') format('woff'), url('../font/LatoItalic/Lato-Light.ttf') format('truetype'), url('../font/LatoItalic/Lato-Light.svg#Lato-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "LatoRegular";
    src: url('../font/LatoRegular/Lato-Regular.eot');
    src: url('../font/LatoRegular/Lato-Regular.eot?#iefix') format('embedded-opentype'), url('../font/LatoRegular/Lato-Regular.woff2') format('woff2'), url('../font/LatoRegular/Lato-Regular.woff') format('woff'), url('../font/LatoRegular/Lato-Regular.ttf') format('truetype'), url('../font/LatoRegular/Lato-Regular.svg#Lato-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "LatoItalic";
    src: url('../font/LatoItalic/Lato-Italic.eot');
    src: url('../font/LatoItalic/Lato-Italic.eot?#iefix') format('embedded-opentype'), url('../font/LatoItalic/Lato-Italic.woff2') format('woff2'), url('../font/LatoItalic/Lato-Italic.woff') format('woff'), url('../font/LatoItalic/Lato-Italic.ttf') format('truetype'), url('../font/LatoItalic/Lato-Italic.svg#Lato-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
}
/* font-family: "LatoBoldItalic"; */
@font-face {
    font-family: "LatoBoldItalic";
    src: url("../font/LatoBoldItalic/LatoBoldItalic.eot");
    src: url("../font/LatoBoldItalic/LatoBoldItalic.eot?#iefix") format("embedded-opentype"), url("../font/LatoBoldItalic/LatoBoldItalic.woff") format("woff"), url("../font/LatoBoldItalic/LatoBoldItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/*-------------------------- codes section ----------------------------*/
.codes {
    padding-bottom: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flex-wrapper {
    display: flex;
    flex-direction: column;
}
.sidebar-wrapper {
    width: 27%;
}
.sidebar-wrapper .sidebar-options {
    margin-bottom: 40px;
    display: flex;
}
.sidebar-wrapper .sidebar-options .option-block {
    font-weight: 700;
    width: 45%;
    padding: 13px 0;
    text-align: center;
    background: #fff;
    color: #34495e;
    box-sizing: border-box;
    border: 2px solid #c0cedc;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    transition: .1s;
    text-decoration: none;
}
.sidebar-wrapper .sidebar-options .option-block.active {
    border: 2px solid #34495e;
    background: #34495e;
    color: #fff;
}
.sidebar-wrapper .sidebar-options .option-block:nth-of-type(1) {
    border-right: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.sidebar-wrapper .sidebar-options .option-block:nth-of-type(2) {
    border-left: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.sidebar-wrapper .sidebar-block h4 {
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #d9e2ea;
}
.sidebar-wrapper .sidebar-block h4:after {
    display: block;
    content: "";
    width: 25%;
    height: 2px;
    background: #fc4549;
    margin-top: 20px;
    transition: .5s;
}
.sidebar-wrapper .sidebar-block-menu {
    margin-bottom: 45px;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu ul {
    padding-left: 0;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li {
    cursor: pointer;
    list-style: none;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li .list-option {
    width: 97%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li .list-option.active i {
    transform: rotate(90deg);
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li a {
    padding: 10px 0;
    font-family: "LatoBold";
    font-size: 14px;
    color: #34495e;
    transition: .2s;
    text-decoration: none;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li a:hover {
    color: #fc4549;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li i {
    color: #fc4549;
    transition: .1s;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li ul {
    transition: .1s;
    max-height: 0;
    overflow: hidden;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li ul li {
    transition: .2s;
    -webkit-transition: height 200ms ease-in;
    -moz-transition: height 200ms ease-in;
    -o-transition: height 200ms ease-in;
    transition: height 200ms ease-in;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li ul li a {
    padding-left: 10px;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li ul li li a {
    padding-left: 20px;
}
.sidebar-wrapper .sidebar-block-menu .sidebar-menu li ul li li li a {
    padding-left: 30px;
}

.sidebar-wrapper .sidebar-block-form {
    color: #34495e;
}
.sidebar-wrapper .sidebar-block-form form {
    display: block;
    width: 90%;
}
.sidebar-wrapper .sidebar-block-form .text-description {
    font-size: 14px;
}
.sidebar-wrapper .sidebar-block-form input[type='text'],
.sidebar-wrapper .sidebar-block-form input[type='email'] {
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    line-height: 40px;
    padding: 0 15px;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
}
.sidebar-wrapper .sidebar-block-form textarea {
    display: block;
    width: 100%;
    min-height: 80px;
    margin-bottom: 15px;
    padding: 10px 15px;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
}
.sidebar-wrapper .sidebar-block-form .btn-submit {
    display: block;
    width: 140px;
    height: 40px;
    margin-left: auto;
    line-height: 36px;
    box-sizing: border-box;
    text-align: center;
    color: #fc4549;
    border: 2px solid #fc4549;
    border-radius: 3px;
    background: #fff;
    transition: .3s;
}
.sidebar-wrapper .sidebar-block-form .btn-submit:hover {
    background: #fc4549;
    color: #fff;
}
.middle-block {
    width: 45%;
    border: none;
}
.middle-block .search-container {
    margin-bottom: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}
.middle-block .search-container input {
    font-family: "LatoItalic", Helvetica;
    font-style: italic;
    display: block;
    height: 44px;
    line-height: 44px;
    width: 95%;
    margin-right: 1%;
    border: none;
    border-bottom: 1px solid #c0cedc;
    font-size: 18px;
    color: #34495e;
}
.middle-block .search-container .btn-search {
    display: block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: #34495e;
    text-align: center;
}
.middle-block .search-container .btn-search i {
    font-size: 18px;
    color: #fff;
    text-align: center;
    transition: .2s;
}
.middle-block .table-list p {
    margin: 0 !important;
}
.middle-block .list-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-top: 1px solid #d9e2ea;
    border-bottom: 1px solid #d9e2ea;
    box-shadow: 0 0 5px #d9e2ea;
    transition: .2s;
}
.middle-block .list-item:nth-of-type(odd) {
    background: #ecf2f7;
}
.middle-block .list-item .list-link {
    display: block;
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 93%;
    font-size: 14px;
}
.middle-block .list-item .header-item {
    width: 20%;
    text-align: center;
    font-family: "LatoBoldItalic";
}
.middle-block .list-item .body-item {
    padding: 20px 10px;
    width: 80%;
    border-left: 1px solid #d9e2ea;
}
.middle-block .list-item .footer-item {
    width: 7%;
}
.inner-header .btn-add-inner {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #d9e2ea;
    position: relative;
    cursor: pointer;
    transition: .2s;
    border-radius: 3px;
}
.inner-header .btn-add-inner i {
    transition: .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.inner-header .btn-add-inner:hover {
    background: #7e94d6;
}
.inner-header .btn-add-inner:hover i {
    color: #fff;
}
.inner-header .btn-add-inner.checked:hover {
    background: #fff;
}
.inner-header .btn-add-inner.checked:hover i {
    color: #008000;
}
.inner-header .btn-add-inner.checked {
    color: #008000;
}
.middle-block .btn-add {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #d9e2ea;
    position: relative;
    cursor: pointer;
    transition: .2s;
    border-radius: 3px;
}
.middle-block .btn-add i {
    transition: .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.middle-block .btn-add:hover {
    background: #7e94d6;
}
.middle-block .btn-add:hover i {
    color: #fff;
}
.middle-block .btn-add.checked:hover {
    background: #fff;
}
.middle-block .btn-add.checked:hover i {
    color: #008000;
}
.middle-block .btn-add.checked {
    color: #008000;
}

.sidebar-codes {
    width: 23%;
}
.sidebar-codes .header-sidebar-codes {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d9e2ea;
    position: relative;
    align-items: center;
}
.sidebar-codes .header-sidebar-codes h4 {
    font-size: 14px;
    font-weight: 700;
}
.sidebar-codes .header-sidebar-codes span {
    font-family: "LatoItalic", Helvetica;
    font-style: italic;
    font-size: 14px;
    color: #34495e;
}
.sidebar-codes .header-sidebar-codes:after {
    position: absolute;
    display: block;
    content: "";
    width: 25%;
    height: 2px;
    background: #fc4549;
    margin-top: 20px;
    transition: .5s;
    bottom: 0;
    left: 0;
}
.sidebar-codes .codes-content {
    padding: 15px;
    border: 1px solid #d9e2ea;
    background: #fff;
}
.sidebar-codes .codes-content .codes-list {
    padding-left: 0;
    list-style: none;
}
.sidebar-codes .codes-content .codes-list li {
    font-family: "LatoBold";
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 10px;
    background: #ecf2f7;
    color: #34495e;
}
.sidebar-codes .codes-content .list-content {
    display: none;
}
.sidebar-codes .codes-content .codes-list li .btn-list-close {
    cursor: pointer;
    transition: .3s;
    color: #fc4549;
}
.sidebar-codes .codes-content .codes-list li .btn-list-close:hover {
    transform: rotate(360deg);
}
.sidebar-codes .codes-content .codes-list li:last-of-type {
    margin-bottom: 0;
}
.sidebar-codes .copy-code {
    display: none;
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    resize: vertical;
    min-height: 120px;
    max-height: 250px;
}
.sidebar-codes .codes-content .btn-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 20px;
}
.sidebar-codes .codes-content .btn-wrapper .print {
    width: 115px;
    height: 40px;
    background: #34495e;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid transparent;
    font-size: 14px;
    transition: .2s;
}
.sidebar-codes .codes-content .btn-wrapper .print:first-of-type {
    background: #fff;
    color: #34495e;
    border: 1px solid #34495e;
}
.sidebar-codes .codes-content .btn-trash {
    width: 100%;
    text-align: center;
    color: #34495e;
    cursor: pointer;
    font-size: 14px;
    transition: .2s;
}
.sidebar-codes .codes-content .btn-trash:hover {
    color: #fc4549;
}
@media screen and (max-width: 1199px) {
    .container {
        width: 960px;
    }
    .codes {
        font-size: 16px;
    }
    .flex-wrapper {
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -o-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
    }
    .sidebar-wrapper {
        width: 100%;
        margin-bottom: 30px;
    }
    .sidebar-wrapper .sidebar-options {
        justify-content: center;
    }
    .sidebar-wrapper .sidebar-options .option-block {
        width: 30%;
    }
    .sidebar-wrapper .sidebar-block {
        width: 35%;
    }
    .sidebar-wrapper .sidebar-block h4 {
        border-bottom: none;
        margin: none;
        height: 45px;
        line-height: 45px;
        border: 1px solid #fc4549;
        text-align: center;
        cursor: pointer;
        transition: .2s;
    }
    .sidebar-wrapper .sidebar-block h4:after {
        display: none;
    }
    .sidebar-wrapper .sidebar-block h4:hover {
        background: #fc4549;
        color: #fff;
    }
    .sidebar-wrapper .sidebar-block:first-of-type {
        margin-right: 10%;
    }
    .sidebar-wrapper .sidebar-block-menu nav {
        display: none;
    }
    .sidebar-wrapper .sidebar-block-menu.active nav {
        display: block;
    }
    .sidebar-wrapper .sidebar-block-form form {
        display: none;
        width: 100%;
    }
    .sidebar-wrapper .sidebar-block-form form .text-description {
        text-align: center;
    }
    .sidebar-wrapper .sidebar-block-form.active form {
        display: block;
    }
    .middle-block {
        width: 65%;
    }
    .sidebar-codes {
        width: 30%;
    }
}
@media screen and (max-width: 1000px) {
    .container {
        width: 768px;
    }
    .codes {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .flex-wrapper {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
    }
    .sidebar-wrapper {
        order: 1;
    }
    .sidebar-wrapper .sidebar-block h4 {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .sidebar-wrapper .sidebar-block:first-of-type {
        width: 45%;
    }
    .sidebar-wrapper .sidebar-block:last-of-type {
        width: 45%;
    }
    .sidebar-wrapper .sidebar-options .option-block {
        width: 31%;
    }
    .sidebar-wrapper .sidebar-block {
        margin: 0 auto;
    }
    .sidebar-wrapper .sidebar-block:first-of-type {
        margin-right: 0;
        margin: 0 auto;
    }
    .sidebar-wrapper .sidebar-block-menu {
        margin-bottom: 0;
    }
    .middle-block {
        order: 3;
        width: 90%;
        margin: 0 auto;
    }
    .sidebar-codes {
        order: 2;
        width: 45%;
        margin: 0 auto 40px;
    }
}
@media screen and (max-width: 780px) {
    .container {
        width: 490px;
    }
    .sidebar-wrapper .sidebar-block:first-of-type {
        width: 60%;
    }
    .sidebar-wrapper .sidebar-block:last-of-type {
        width: 60%;
    }
    .middle-block .list-item .list-link {
        width: 90%;
    }
    .middle-block .list-item .list-link .body-item {
        padding: 15px 5px;
    }
    .middle-block .list-item .footer-item {
        width: 10%;
    }
    .sidebar-codes {
        order: 2;
        width: 60%;
        margin: 0 auto 40px;
    }
}
.middle-block .inner-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -o-align-items: center;
    align-items: center;
}
/* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */
