@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local('Montserrat Regular'), local('Montserrat-Regular'), url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: 'Roboto-Light';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto Light'), local('Roboto-Light'), url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: 'Roboto-Black';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto Black'), local('Roboto-Black'), url(../fonts/Roboto-Black.ttf);
}

body {
    background-color: #faf9f9;
    font-family: Roboto-Light, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#scroller{
    position: fixed;
    bottom: 94px;
    right: 5px;
    background: transparent url(../img/scroll_arrow.png) no-repeat left top;
    width: 55px;
    height: 55px;
    cursor: pointer;
    display:none;
}


/* ############ HEADER ############ */


header>div:first-child {
    height: 54px;
    width: 100%;
    background-color: #005b7f;
}

header>div:nth-child(2) {
    height: 8px;
    width: 100%;
    background-image: -moz-linear-gradient(right,#005b7f, #00ffff, #005b7f);
    background-image: -webkit-linear-gradient(right,#005b7f, #00ffff, #005b7f);
    background-image: -o-linear-gradient(right,#005b7f, #00ffff, #005b7f);
    background-image: -ms-linear-gradient(right,#005b7f, #00ffff, #005b7f);
    background-image: linear-gradient(to right,#005b7f, #00ffff, #005b7f);
}

header>div:first-child .container{
    position: relative;
}

img.logo {
    position: absolute;
    top: 10px;
}

.nav_menu {
    padding-top: 2px;
}
.nav_menu a{
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    margin-top: 14px;
}

.nav_menu div>a:first-child{
    margin-right: 0px;
}

.nav_menu div>a{
    margin-left: 5px;
}

.nav_menu a i.fa-circle{
    border-radius: 50%;
    border: 1px solid #555758;
    margin-right: 10px;
}

.nav_menu div:first-child a.active{
    color: #00ffff;
}

.nav_menu div:first-child a.active.disable{
    cursor: default;
    text-decoration: none;
}

.nav_menu div:nth-child(2) a.active i{
    color: #00ffff;
}

.circle {
    width: 15px;
    height: 15px;
    background: red;
    border-radius: 50%;
    display: inline-block;
}

.user_menu {
    position: absolute;
    right: 15px;
    top: 0;
}

.user_menu #dropdownMenuButton {
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    margin-top: 8px;
}

.user_menu .dropdown-menu {
    border-radius: 0;
    border-color: #b7b7b7;
    box-shadow: 1px 0 5px #d5d8d6, -1px 0 5px #d5d8d6;
}

.user_menu .dropdown-menu a{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: bold;
}
.user_menu .dropdown-menu .dropdown-item:active{
    background-color: #e1e1e1;
}


/* ############ CONTENT ############ */



.filters {
    border-bottom: 1px solid #898989;
    padding-left: 110px;
    padding-bottom: 4px;
}

.filters .filters-custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.filters .filters-custom-control-input:disabled ~ .filters-custom-control-label {
    color: #6c757d;
}

.filters .filters-custom-control-label {
    color: #4e4e4e;
    font-family: 'Roboto-Light', sans-serif;
    font-size: 14px;
    position: relative;
    margin-bottom: 0;
}

.filters .filters-custom-control-label:hover {
    cursor: pointer;
    text-decoration: underline;
}

.filters .filters-custom-control-label::after {
    border: 1px solid #5b5b5b;
    border-radius: 50%;
    position: absolute;
    top: 0.08rem;
    right: -1.1rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat center center;
    background-size: 0 0;
}

.filters .custom-radio .filters-custom-control-label::after {
    background-color: #ffffff;
}

.filters .custom-radio .filters-custom-control-input:checked~.filters-custom-control-label::after {
    background-color: #0076a3;
    border-radius: 50%;
}

.filters .custom-radio .filters-custom-control-input:active ~ .filters-custom-control-label::after {
    background-color: #0076a3;
}

.filters .filters-custom-control-label::after {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.filters .state-type {
    margin-right: 30px;
}
.filters div.input-group.input-group-sm {
    margin-bottom: 1px;
}

@media screen and (prefers-reduced-motion: reduce) {
    .filters .filters-custom-control-label::before {
        transition: none;
    }
}

.filters .select-container {
    position: relative;
    display: inline-block;
    width: 100%;
}
.filters .select-container::before {
    content: attr(data-content);
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    left: 0;
    padding: 5px 30px 6px 12px;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-transform: capitalize;
    pointer-events: none;
}
.filters .select-container select {
    padding: 5px;
    color: transparent;
}

.filters .select-container select optgroup,
.filters .select-container select option {
    color: #495057;
}

.filters .input-group > div.select-container {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0
}

.filters .input-group > div.select-container > .custom-file + .custom-select,
.filters .input-group > div.select-container > .custom-select + .custom-file,
.filters .input-group > div.select-container > .custom-select + .custom-select,
.filters .input-group > div.select-container > .custom-select + .form-control,
.filters .input-group > div.select-container > .form-control + .custom-select {
    margin-left: -1px
}

.filters .input-group > div.select-container > .custom-select:focus {
    z-index: 3
}

.filters .input-group > div.select-container:not(:last-child) > .custom-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.filters .input-group > div.select-container:not(:first-child) > .custom-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.filters select {
    background-image:
            -moz-linear-gradient(45deg, transparent 50%, #575757 60%),
            -moz-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            -webkit-linear-gradient(45deg, transparent 50%, #575757 60%),
            -webkit-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            -o-linear-gradient(45deg, transparent 50%, #575757 60%),
            -o-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            -ms-linear-gradient(45deg, transparent 50%, #575757 60%),
            -ms-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            linear-gradient(45deg, transparent 50%, #575757 60%),
            linear-gradient(135deg, #575757 40%, transparent 50%) !important;
    background-position:
            calc(100% - 23px) 10px,
            calc(100% - 14px) 10px,
            100% 0;
    background-size:
            9px 13px,
            9px 13px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-top: 4px;
    padding-right: 40px;
}

.filters select,
.filters .input-group-sm > .form-control {
    border-color: #858585;
    font-size: 14px;
}

.filters select:focus,
.filters .input-group-sm > .form-control:focus,
.filters .input-group-append button {
    outline: none;
    box-shadow: none;
}

.filters .input-group-sm > .form-control:focus {
    /*border-right: none;*/
}

.filters select:focus {
    border-color: #858585;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.filters .input-group-sm > .form-control {
    padding-top: 6px;
    padding-bottom: 6px;
}

.filters .input-group-prepend label,
.filters .input-group-append button {
    background-color: #ffffff;
    border-color: #858585;
}

.filters .input-group-append button {
    color: #545454;
    border-radius: 0 0.2rem 0.2rem 0 !important;
}
.filters div.row > div:last-child .input-group-append button {
    border-width: 1px 1px 1px 0;
}

.filters .was-validated .input-group-sm > .form-control:invalid ~ .input-group-append button {
    border-color: #fe8300;
}

.filters .was-validated .input-group-sm > .form-control:valid ~ .input-group-append button {
    border-color: #005c7e!important;
}

.filters .input-group-append button:hover {
    background-color: #d7d7d7;
}

.filters .input-group-append button:active {
    background-color: #b7b7b7;
}

.filters .buttons-block button[type=submit] {
    color: #ffffff;
    background-color: #005b7f;
    border-radius: 5px;
    border: 1px solid #005b7f;
    font-family: Montserrat, sans-serif;
}
.filters .buttons-block button[name=clear_filters] {
    color: #005b7f;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #005b7f;
    font-family: Montserrat, sans-serif;
}

.filters .buttons-block button:hover,
.filters .buttons-block button:active {
    text-decoration: underline;
    box-shadow: none;
}

.clear_filters {
    font-size: 13px;
    color: #212529;
    margin-bottom: 5px;
}

.clear_filters:hover {
    color: #212529;
    text-decoration: underline;
}

.showing select {
    background-image: 
            -moz-linear-gradient(45deg, transparent 50%, #575757 60%),
            -moz-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image: 
            -webkit-linear-gradient(45deg, transparent 50%, #575757 60%),
            -webkit-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            -o-linear-gradient(45deg, transparent 50%, #575757 60%),
            -o-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            -ms-linear-gradient(45deg, transparent 50%, #575757 60%),
            -ms-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            linear-gradient(45deg, transparent 50%, #575757 60%),
            linear-gradient(135deg, #575757 40%, transparent 50%) !important;
    background-position:
            calc(100% - 23px) 10px,
            calc(100% - 14px) 10px,
            100% 0;
    background-size:
            9px 13px,
            9px 13px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-top: 4px;
    width: 70px;
    border-color: #858585;
    font-size: 14px;
}

.showing select:focus {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #858585;
}

.showing p {
    font-size: 14px;
}

.showing select:focus,
.showing a.btn {
    outline: none;
    box-shadow: none;
}

.showing a.btn {
    color: #e1e1e1;
    font-size: 24px;
    line-height: 30px;
}
.showing a.btn:hover,
.showing a.btn:focus,
.showing a.btn.active-view {
    color: #575757;
}

#showing_as_tiles > div.d-flex:after {
    box-sizing: border-box;
    /*content: "";*/
    /*flex: auto;*/
}

#showing_as_tiles .template {
    width: 250px;
}

#showing_as_tiles .template.empty_template_item {
    visibility: hidden;
    height: 0;
    padding: 0 !important;
    margin: 0 auto !important;
    border-top-width: 0;
    border-bottom-width: 0;
}

#showing_as_tiles .template > div:first-child > a {
    height: 210px;
}

#showing_as_tiles .template > div:first-child > a img{
    border: 1px solid #b7b7b7;
}

#showing_as_tiles .template > div:first-child {
    background-color: #e1e1e1;
    position: relative;
}

div.standalone_mark {
    position: absolute;
    bottom: 12%;
    right: 0px;
    background-color: #fc8e1a;
    font-size: 12px;
    color: white;
    padding: 1px 7px 1px 10px;
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
}

#showing_as_tiles .template > div:first-child:hover {
    background-color: #959595;
}

#showing_as_tiles .template > div:nth-child(2) {
    background-color: #ffffff;
    margin-top: 1px;
    box-shadow: 1px 0 0 0 #e4e4e4, -1px 0 0 0 #e4e4e4, 0 2px 2px 0 #e4e4e4;
    /*box-shadow: 0 2px 4px #e4e4e4;*/
}

#showing_as_tiles .template p {
    color: #231f20;
    margin: 0 0 2px;
}

#showing_as_tiles .template_title,
#showing_as_tiles .template_info {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#showing_as_tiles .template .template_title {
    font-size: 15px;
    font-family: Roboto, sans-serif;
}

#showing_as_tiles .template .template_info {
    font-size: 14px;
}

#showing_as_tiles .template .template_order {
    font-size: 14px;
    border: 1px solid #040404;
    color: #231f20;
    border-radius: 0;
}

#showing_as_tiles .template .template_order:hover {
    background-color: #d7d7d7;
    color: #231f20;

}

#showing_as_tiles .template .template_order:hover,
#showing_as_tiles .template .template_order:focus {
    outline: none;
    box-shadow: none;
}

#showing_as_tiles .template .template_price {
    font-family: Roboto-Black, sans-serif;
    font-size: 20px;
}

#showing_as_list {
    margin-bottom: 64px;
}

#showing_as_list .template {
    background-color: #ffffff;
    margin-top: 8px;
    margin-bottom: 24px;
}
#showing_as_list .template > div:first-child > a {
    padding: 8px 0;
}
#showing_as_list .template > div:first-child > a:hover {
    text-decoration: none;
}
#showing_as_list .template > div:first-child > a img{
    margin-top: 3px !important;
    margin-bottom: 3px !important;
    max-width: 48%;
    height: auto;
    border: 1px solid #b7b7b7;
}

#showing_as_list .template > div:first-child{
    flex-basis: 283px;
    width: 283px;
    background-color: #e1e1e1;
    align-self: stretch;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

#showing_as_list .template > div:first-child img.wafer {
    position: absolute;
    bottom: 5px;
    right: 5px;
}



#showing_as_list .template > div:nth-child(2) {
    width: calc(100% - 300px);
}
#showing_as_list .template > div:nth-child(2) > .row {
    align-self: stretch;
    align-items: center;
    display: flex;
}






#showing_as_list .template > div:first-child:hover {
    background-color: #959595;
}


#showing_as_list .template p {
    color: #231f20;
    margin: 0 0 2px;
}

#showing_as_list .template_title,
#showing_as_list .template_info {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#showing_as_list .template .template_title {
    font-size: 15px;
    font-family: Roboto, sans-serif;
}

#showing_as_list .template .template_info {
    font-size: 14px;
}

#showing_as_list .template .template_order {
    font-size: 18px;
    border: 1px solid #040404;
    color: #231f20;
    border-radius: 0;
}

#showing_as_list .template .template_order:hover {
    background-color: #d7d7d7;
    color: #231f20;
}

#showing_as_list .template .template_order:hover,
#showing_as_list .template .template_order:focus {
    outline: none;
    box-shadow: none;
}

#showing_as_list .template .template_price {
    font-family: Roboto-Black, sans-serif;
    font-size: 20px;
}

.paging {

}

.paging .page-item:first-child .page-link{
    /*width: 0;*/
    /*height: 0;*/
    /*border-top: 9px solid transparent;*/
    /*border-right: 13px solid #575757;*/
    /*border-bottom: 9px solid transparent;*/
    /*border-left: none;*/
    /*background: none;*/
    border-radius: 0;
}

.paging .page-item.disabled .page-link{
    border-color: #e1e1e1 !important;
    color: #e1e1e1;
}

.paging .page-item {
    margin: 0 3px;
}

.paging .page-item .page-link{
    color: #010101;
    font-size: 12px;
    font-family: Roboto, sans-serif;
    padding: 1px 7px;
}

.paging .page-item .page-link{
    border-color: #040404;
}

.paging .page-item.active .page-link{
    color: #010101;
    background-color: #b7b7b7;
}

.paging .page-item .page-link:focus{
    outline: none;
    box-shadow: none;
}

.paging .page-item:last-child .page-link{
    /*width: 0;*/
    /*height: 0;*/
    /*border-top: 9px solid transparent;*/
    /*border-left: 13px solid #575757;*/
    /*border-bottom: 9px solid transparent;*/
    /*border-right: none;*/
    /*background: none;*/
    border-radius: 0;
}



/* ############ FOOTER ############ */



footer {
    margin-top: auto;
}

footer>div:first-child {
    height: 9px;
    width: 100%;
    background-image: -moz-linear-gradient(right,#005b7f, #00ffff, #005b7f);
    background-image: -webkit-linear-gradient(right,#005b7f, #00ffff, #005b7f);
    background-image: -o-linear-gradient(right,#005b7f, #00ffff, #005b7f);
    background-image: -ms-linear-gradient(right,#005b7f, #00ffff, #005b7f);
    background-image: linear-gradient(to right,#005b7f, #00ffff, #005b7f);
}

footer>div:nth-child(2) {
    height: 63px;
    width: 100%;
    background-color: #005b7f;
}

footer p {
    color: #ffffff
}

p.copyright {
    padding-top: 15px;
}

@media (min-width: 1280px) {
    .container {
        max-width: 1240px;
    }
}

@media (min-width: 1366px) {
    .container {
        max-width: 1340px;
    }
}

@media (min-width: 768px) {
    .nav_menu div>a:first-child{
        margin-right: 0px!important;
    }

    .nav_menu div>a {
        margin-left: 20px;
    }
}



/* ############ LOGIN PAGE ############ */

.gradient_background {
    background-color: #005b7f;
    background-image: url("/web/img/background_gradient2.jpg");
    background-position: center;
    /*
    background: rgba(0,91,127,1);
    background: -moz-linear-gradient(left, rgba(0,91,127,1) 0%, rgba(0,91,127,1) 1%, rgba(0,255,255,1) 34%, rgba(0,255,255,1) 64%, rgba(0,91,127,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,91,127,1)), color-stop(1%, rgba(0,91,127,1)), color-stop(34%, rgba(0,255,255,1)), color-stop(64%, rgba(0,255,255,1)), color-stop(100%, rgba(0,91,127,1)));
    background: -webkit-linear-gradient(left, rgba(0,91,127,1) 0%, rgba(0,91,127,1) 1%, rgba(0,255,255,1) 34%, rgba(0,255,255,1) 64%, rgba(0,91,127,1) 100%);
    background: -o-linear-gradient(left, rgba(0,91,127,1) 0%, rgba(0,91,127,1) 1%, rgba(0,255,255,1) 34%, rgba(0,255,255,1) 64%, rgba(0,91,127,1) 100%);
    background: -ms-linear-gradient(left, rgba(0,91,127,1) 0%, rgba(0,91,127,1) 1%, rgba(0,255,255,1) 34%, rgba(0,255,255,1) 64%, rgba(0,91,127,1) 100%);
    background: linear-gradient(to right, rgba(0,91,127,1) 0%, rgba(0,91,127,1) 1%, rgba(0,255,255,1) 34%, rgba(0,255,255,1) 64%, rgba(0,91,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005b7f', endColorstr='#005b7f', GradientType=1 );
    */
}

body.login_page {
    height: 100vh;
}

.form-login {
    max-width: 100%;
    width: 540px;
    height: 296px;
    margin: auto;
    position: relative;
    -webkit-box-shadow: 2px 9px 32px -2px rgba(0,0,0,0.53);
    -moz-box-shadow: 2px 9px 32px -2px rgba(0,0,0,0.53);
    box-shadow: 2px 9px 32px -2px rgba(0,0,0,0.53);
    border-radius: 23px;
    background: #ffffff;
    background-clip: padding-box;
}

.form_login_block {
    width: 540px;
    background-image: url('/web/img/login_left_img.png');
    background-repeat:  no-repeat;
    padding: 18px 32px 32px 235px;
}

.form_login_block h2 {
    font-size: 24px;
    font-weight: bold;
    color: #005b7f;
}

.form-login > div:first-child {
    -webkit-flex-grow: 3;
    flex-grow: 3;
}

.form-login > div:nth-child(2) {
    max-width: 192px;
    margin-top: 10px !important;
}

.form-login > div:nth-child(2) img {
    max-width: 100%;
}

.form-login label {
    color: #010101;
    font-size: 13px;
    margin-bottom: 0;
}

.form-login input {
    border-radius: 0;
    height: 32px;
    border: 2px solid #e1e1e1;
}

.form-login button {
    font-family: Roboto, sans-serif;
    background: -moz-linear-gradient(top, #02aed9, #00ffff);
    background: -webkit-linear-gradient(top, #02aed9, #00ffff);
    background: -o-linear-gradient(top, #02aed9, #00ffff);
    background: -ms-linear-gradient(top, #02aed9, #00ffff);
    background: linear-gradient(to top, #02aed9, #00ffff);
    border: 1px solid #e1e1e1;
}

.form-login input:focus {
    border-color: #e1e1e1;
}


.form-login button:hover,
.form-login button:focus {
    background: -moz-linear-gradient(top, #00ffff, #02aed9);
    background: -webkit-linear-gradient(top, #00ffff, #02aed9);
    background: -o-linear-gradient(top, #00ffff, #02aed9);
    background: -ms-linear-gradient(top, #00ffff, #02aed9);
    background: linear-gradient(to top, #00ffff, #02aed9);
}

.form-login input:focus,
.form-login button:focus,
.form-login button:active {
    outline: none;
    box-shadow: none;
}

.form-login a.forget_password {
    color: #005b7f;
    font-size: 12px;
    margin-top: 12px!important;
}

.form-login a.forget_password:hover {
    text-decoration: underline;
}

#j-updatePassword-form {
    margin-bottom: 10px !important;
}
#j-updatePassword-form .form_login_block {
    padding-top: 8px;
    padding-right: 25px;
    padding-left: 228px;
}
.update_password_text {
    width: 940px;
    margin-top: 10px !important;
}

@media (min-width: 576px) {
    .form-login > div:first-child {
        width: auto;
    }

    .form-login > div:nth-child(2) {
        margin-top: 30px !important;
    }

    .restore-btn {
        margin-top: 28px !important;
    }
}



/* ############ CUSTOMIZE PAGE ############ */
/*
iframe {
    border: 0;
}

#frame_upload_access_codes_file {
    height: 60px!important;
}
*/

.file-input {
    position: absolute;
    right: 15px;
    top: 0;
    height: 40px;
    font-size: 99px;
    width: 200px;
    opacity: 0;
    cursor: pointer;
    filter: alpha(opacity=0);
}    

.customize h2 {
    color: #005b7f;
    font-size: 30px;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    margin-bottom: 25px;
}

.wizard-steps {
    position: relative;
    background: -moz-linear-gradient(right, #005b7f, #00ffff, #005b7f), url("../img/wizard_steps_bg.png");
    background: -o-linear-gradient(right, #005b7f, #00ffff, #005b7f), url("../img/wizard_steps_bg.png");
    background: -ms-linear-gradient(right, #005b7f, #00ffff, #005b7f), url("../img/wizard_steps_bg.png");
    background: -webkit-linear-gradient(right, #005b7f, #00ffff, #005b7f), url("../img/wizard_steps_bg.png");
    background: linear-gradient(to right, #005b7f, #00ffff, #005b7f), url("../img/wizard_steps_bg.png");
    background-repeat: no-repeat, repeat-x;
    background-position: left 19px, left 0;
    background-size: 100% 25px, 100% 64px;
    min-height: 64px;
    z-index: 1;
}

.wizard-steps:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 60px;
    background-color: #959595;
    box-shadow: 2px 0 10px 1px rgba(0,0,0,0.2);
}

.wizard-steps:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 60px;
    background-color: #959595;
    box-shadow: -2px 0 10px 1px rgba(0,0,0,0.2);
}

.wizard-steps .wizard-step .wizard-circle {
    position: relative;
    width: 68px;
    height: 68px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    padding-top: 13px;
    border: 4px solid transparent;
    background-clip: padding-box;
}

.wizard-steps .wizard-step .wizard-circle:hover {
    cursor: default!important;
    /*background-color: #d7d7d7;*/
}

.wizard-steps .wizard-step figcaption {
    text-transform: uppercase;
    font-size: 12px;
}

.wizard-steps .wizard-step.active figcaption {
    font-family: Roboto, sans-serif;
    font-size: 16px;
}

.wizard-steps .wizard-step .wizard-circle::after,
.wizard-steps .wizard-step.active .wizard-circle::after {
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
    content: '';
    z-index: -1;
    background: #ffffff;
    border-radius: 50%;
}

.wizard-steps .wizard-step.active .wizard-circle::after {
    background: -moz-linear-gradient(top, #005b7f, #00ffff, #005b7f);
    background: -webkit-linear-gradient(top, #005b7f, #00ffff, #005b7f);
    background: -o-linear-gradient(top, #005b7f, #00ffff, #005b7f);
    background: -ms-linear-gradient(top, #005b7f, #00ffff, #005b7f);
    background: linear-gradient(to top, #005b7f, #00ffff, #005b7f);
}

.wizard-steps .wizard-step .wizard-circle:hover::after {
    cursor: default!important;
    /*
    background: -moz-linear-gradient(top, #00ffff, #005b7f, #00ffff);
    background: -webkit-linear-gradient(top, #00ffff, #005b7f, #00ffff);
    background: -o-linear-gradient(top, #00ffff, #005b7f, #00ffff);
    background: -ms-linear-gradient(top, #00ffff, #005b7f, #00ffff);
    background: linear-gradient(to top, #00ffff, #005b7f, #00ffff);
    */
}

.your_card h2 a, 
.order_history h2 a {
    color: #fe8301;
    font-size: 14px;
    text-transform: capitalize;
    float: right;
}

.your_card p {
    color: #01bebe;
}

.your_card .row > div:nth-child(2) {
    color: #005b7f;
    font-weight: bold;
}

.your_card .row div.showOrHideDetailsButtons {
    max-height: 43px;
    overflow: hidden;
}

.template_details {
    display: none;
    background-color: #005b7f;
}

.customize .template_details h2 {
    color: #01bebe;
}

.btn-more-details {
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    line-height: 25px;
    background-image: -moz-linear-gradient(315deg, #005b7f 40%, transparent 50%),
    -moz-linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-image: -webkit-linear-gradient(315deg, #005b7f 40%, transparent 50%),
    -webkit-linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-image: -o-linear-gradient(315deg, #005b7f 40%, transparent 50%),
    -o-linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-image: -ms-linear-gradient(315deg, #005b7f 40%, transparent 50%),
    -ms-linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-image: linear-gradient(135deg, #005b7f 40%, transparent 50%),
    linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-position: calc(100% - 14px) calc(50% + 6px),
    calc(100% - 14px) calc(50% - 6px),
    100% 0;
    background-size: 9px 13px,
    9px 13px;
    background-repeat: no-repeat;
    white-space: initial;
    padding-right: 20px;
    width: 200px;
    min-width: 200px;
    max-width: 100%;

    color: #005b7f;
    border: 1px solid #005b7f;
    background-color: #ffffff;
}

.btn-fewer-details-top {
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #005b7f;
    border-radius: 5px;
    border: none;
    line-height: 27px;
    background-image: -moz-linear-gradient(45deg, transparent 50%, #ffffff 60%),
    -moz-linear-gradient(315deg, #ffffff 40%, transparent 50%) !important;
    background-image: -webkit-linear-gradient(45deg, transparent 50%, #ffffff 60%),
    -webkit-linear-gradient(315deg, #ffffff 40%, transparent 50%) !important;
    background-image: -o-linear-gradient(45deg, transparent 50%, #ffffff 60%),
    -o-linear-gradient(315deg, #ffffff 40%, transparent 50%) !important;
    background-image: -ms-linear-gradient(45deg, transparent 50%, #ffffff 60%),
    -ms-linear-gradient(315deg, #ffffff 40%, transparent 50%) !important;
    background-image: linear-gradient(45deg, transparent 50%, #ffffff 60%),
    linear-gradient(135deg, #ffffff 40%, transparent 50%) !important;
    background-position: calc(100% - 23px) 50%,
    calc(100% - 14px) 50%,
    100% 0;
    background-size: 9px 13px,
    9px 13px;
    background-repeat: no-repeat;
    white-space: initial;
    padding-right: 20px;
    width: 200px;
    min-width: 200px;
    max-width: 100%;
}

.btn-fewer-details-top {
    display: none;
}

a.btn-more-details:hover,
a.btn-more-details:focus,
a.btn-fewer-details-top:hover,
a.btn-fewer-details-top:focus,
a.btn-fewer-details:hover,
a.btn-fewer-details:focus {
    outline: none;
    box-shadow: none;
    color: #ffffff;
    text-decoration: underline;
}

a.btn-fewer-details {
    border: none;
    line-height: 27px;
    font-size: 16px;
    background-color: #ffffff;
    border-radius: 5px;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    background-image: -moz-linear-gradient(315deg, transparent 50%, #005b7f 60%),
    -moz-linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-image: -webkit-linear-gradient(315deg, transparent 50%, #005b7f 60%),
    -webkit-linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-image: -o-linear-gradient(315deg, transparent 50%, #005b7f 60%),
    -o-linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-image: -ms-linear-gradient(315deg, transparent 50%, #005b7f 60%),
    -ms-linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-image: linear-gradient(135deg, transparent 50%, #005b7f 60%),
    linear-gradient(45deg, #005b7f 40%, transparent 50%) !important;
    background-position: calc(100% - 23px) 40%,
    calc(100% - 14px) 40%,
    100% 0;
    background-size: 9px 13px,
    9px 13px;
    background-repeat: no-repeat;
    white-space: initial;
    padding-right: 20px;
    width: 200px;
    min-width: 200px;
    max-width: 100%;
}

a.btn-more-details:hover,
a.btn-more-details:focus,
a.btn-fewer-details,
a.btn-fewer-details:hover,
a.btn-fewer-details:focus {
    color: #005b7f;
}

.template_details_shadow_top {
    height: 25px;
    background: -moz-linear-gradient(bottom, #0000003b, transparent);
    background: -webkit-linear-gradient(bottom, #0000003b, transparent);
    background: -o-linear-gradient(bottom, #0000003b, transparent);
    background: -ms-linear-gradient(bottom, #0000003b, transparent);
    background: linear-gradient(to bottom, #0000003b, transparent);
}
.template_details_shadow_bottom {
    height: 25px;
    background: -moz-linear-gradient(top, #0000003b, transparent);
    background: -webkit-linear-gradient(top, #0000003b, transparent);
    background: -o-linear-gradient(top, #0000003b, transparent);
    background: -ms-linear-gradient(top, #0000003b, transparent);
    background: linear-gradient(to top, #0000003b, transparent);
}

.template_details div.row {
    color: #ffffff;
}

.template_details div.row div.col-8.col-md-9 {
    word-wrap: break-word;
}

#customize_access_card_form input,
#customize_access_card_form textarea,
#customize_access_card_form select,
#customize_access_card_form option
{
    border: 1px solid #b7b7b7;
    border-radius: 0;
}

#customize_access_card_form textarea {
    resize: none;
}

#customize_access_card_form input:hover,
#customize_access_card_form input:focus,
#customize_access_card_form textarea:hover,
#customize_access_card_form textarea:focus {
    outline: none;
    box-shadow: none;
}

.label_radio_review {
    font-size:20px;
    font-family: Roboto, sans-serif;
}


.upload_file {
    background-color: #ebebeb;
}

.modal-cancel-btn,
.discard-cancel-btn,
.customizer-upload-btn {
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    color: #005b7f;
    border: 1px solid #005b7f;
    line-height: 25px;
    background-color: #ffffff;
    width: 200px;
    max-width: 100%;
}
.discard-cancel-btn:hover,
.modal-cancel-btn:hover,
.customizer-upload-btn:hover{
    cursor:pointer!important;
}

/*
.customizer-delete-btn {
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #005b7f;
    line-height: 25px;
    color: #ffffff;
    background-color: #005b7f;
    border-radius: 5px;
    width: 234px;
    max-width: 100%;
}
*/

.uploaded_file {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #01bebe;
    padding: 0;
    display: block;
}

.uploaded_file > i{
    font-size: 20px;
}

/* layout.css Style */
.upload-drop-zone {
    height: 100px;
    border-width: 2px;
    margin-bottom: 20px;
}

/* skin.css Style*/
.upload-drop-zone {
    color: #ccc;
    border-style: dashed;
    border-color: #ccc;
    line-height: 100px;
    text-align: center
}

.j-drop-zone.hover {
    background: #ddd;
    border-color: #aaa;
}

.j-drop-zone.error {
    background: #faa;
    border-color: #f00;
}


/** NEXT, CANCEL buttons **/

.modal-ok-btn,.modal-footer a.btn-ok.confirm-cancel-btn {
    color: #ffffff;
}

.customizer-btn,
.modal-ok-btn,
.confirm-cancel-btn {
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    color: #feffff!important;
    text-transform: uppercase;
    border-radius: 5px;
    width: 234px;
    font-size: 18px;
    max-width: 100%;
    border: none;
    background: -moz-linear-gradient(top, #005b7f, #046d96, #0a88b7);
    background: -webkit-linear-gradient(top, #005b7f, #046d96, #0a88b7);
    background: -o-linear-gradient(top, #005b7f, #046d96, #0a88b7);
    background: -ms-linear-gradient(top, #005b7f, #046d96, #0a88b7);
    background-image: linear-gradient(to top, #005b7f, #046d96, #0a88b7);
}

a.customizer-btn {
    line-height: 27px;
}
a.confirm-cancel-btn:hover,
a.modal-ok-btn:hover,
a.customizer-btn:hover {
    color: white!important;
}

.modal-ok-btn:hover,
.modal-footer a.btn-ok.confirm-cancel-btn:hover,
.modal-footer button.discard-cancel-btn:hover,
.customizer-delete-btn:hover,
.customizer-delete-btn:focus,
.customizer-upload-btn:hover,
.customizer-upload-btn:focus,
.customizer-btn:hover,
.customizer-btn:focus {
    outline: none;
    box-shadow: none;
    text-decoration: underline;
}

.customizer-btn:hover,
.customizer-btn:focus,
.customizer-delete-btn:hover,
.customizer-delete-btn:focus {
    color: #ffffff;
}
.customizer-upload-btn:hover,
.customizer-upload-btn:focus {
    color: #005b7f;
}



/* ############ PREVIEW CARD PAGE ############ */



.outside_block,
.inside_block {
    background-color: #e1e1e1;
}

.outside_block h3,
.inside_block h3{
    color: #005b7f;
    font-size: 24px;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.outside_block {
    position: relative;
}

.preview_info {
    position: absolute;
    right: 22px;
    top: 30px;
}

.preview_info img{
    cursor: pointer;
}

.preview_explanation {
    z-index: 2;
    border: 0 solid #959595;
    border-radius: 20px 0 20px 20px;
    position: absolute;
    right: 68px;
    top: 68px;
    background-color: #ffffff;
    height: 0;
    width: 0;
    overflow: hidden;
    transition: all 2s ease;
}

.preview_explanation img{
    margin: 0 auto;
    max-width: 50%;
    height: auto;
    transition: all 2s ease;
}

.preview_info>img:hover~.preview_explanation {
    border-width: 1px;
    width: 420px;
    max-width: calc(100vw - 180px);
    height: 307px;
    box-shadow: 4px 4px 5px rgba(0,0,0,0.2);
}
.preview_info>img:hover~.preview_explanation img{
    margin: 58px auto;
    width: 356px;
    max-width: 100%;
    height: auto;
}

img.preview_card {
    max-width: 90%;
    max-height: 80vh;
}



/* ############ CONFIRM PAGE ############ */




.confirm_block {
    min-height: 62px;
}


.confirm_block div {
    border: 3px solid transparent;
    position: relative;
    background: #faf9f9;
    background-clip: padding-box;
}

.confirm_block div::after {
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: -moz-linear-gradient(right, #005b7f, #00ffff, #005b7f);
    background: -webkit-linear-gradient(right, #005b7f, #00ffff, #005b7f);
    background: -o-linear-gradient(right, #005b7f, #00ffff, #005b7f);
    background: -ms-linear-gradient(right, #005b7f, #00ffff, #005b7f);
    background: linear-gradient(to right, #005b7f, #00ffff, #005b7f);
    content: '';
    z-index: -1;
}

.confirm_block div p {
    font-family: Montserrat, sans-serif;
    font-size: 21px;
    color: #010101;
    text-align: center;
    margin: 10px 0;
}

.confirm_direction,
.confirm_qty {
    background-color: #e1e1e1;
}

.confirm_qty div.row {
    font-size: 28px;
}

.confirm_details div.row {
    font-size: 20px;
}
.confirm_qty div.row div:nth-child(2){
    font-family: Roboto-Black, sans-serif;
}

.confirm_details div.row div:nth-child(2){
    font-family: Roboto, sans-serif;
}

.confirm_direction div i {
    color: #fe8301;
    font-size: 28px;
}

.confirm_direction div.row div:nth-child(2) {
    font-size: 20px;
    font-family: Roboto, sans-serif;
}


a.confirm-btn,
button.confirm-btn {
    color: #000000;
    background: -moz-linear-gradient(top, #02aed9, #00ffff);
    background: -webkit-linear-gradient(top, #02aed9, #00ffff);
    background: -o-linear-gradient(top, #02aed9, #00ffff);
    background: -ms-linear-gradient(top, #02aed9, #00ffff);
    background: linear-gradient(to top, #02aed9, #00ffff);
    border: 1px solid #e1e1e1;

    font-family: Montserrat, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    width: 234px;
    font-size: 18px;
    max-width: 100%;

}

a.confirm-btn:focus,
button.confirm-btn:focus {
    color: #000000;
    border-color: #e1e1e1;
}

a.confirm-btn:hover,
a.confirm-btn:focus,
button.confirm-btn:hover,
button.confirm-btn:focus {
    color: #000000;
    background: -moz-linear-gradient(top, #00ffff, #02aed9);
    background: -webkit-linear-gradient(top, #00ffff, #02aed9);
    background: -o-linear-gradient(top, #00ffff, #02aed9);
    background: -ms-linear-gradient(top, #00ffff, #02aed9);
    background: linear-gradient(to top, #00ffff, #02aed9);
}

a.confirm-btn:focus,
a.confirm-btn:active,
button.confirm-btn:focus,
button.confirm-btn:active {
    color: #000000;
    outline: none;
    box-shadow: none;
}

a.confirm-btn.disabled {
    color: #999999 !important;
}

.customizer-btn.disabled {
    cursor: default;
    opacity: 1 !important;
    color: #999999 !important;
}


@media (min-width: 1200px) {
    .customize > div.container,
    .customize > #j-template_details > div.container,
    .customize > #customize_access_card_form div.container,
    .customize > div.outside_block > div.container,
    .customize > div.inside_block > div.container,
    .customize > div.confirm_qty > div.container {
        max-width: 1000px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .customize > div.container,
    .customize > #j-template_details > div.container,
    .customize > #customize_access_card_form div.container,
    .customize > div.outside_block > div.container,
    .customize > div.inside_block > div.container,
    .customize > div.confirm_qty > div.container {
        max-width: 900px;
    }
}

.limit_exceeded {
    color: #fe8300;
    font-family: Roboto-Light, sans-serif !important;
    font-size: 18px;
    font-weight: bold;
}

.confirm_direction .confirm-custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.confirm_direction .confirm-custom-control-input:disabled ~ .confirm-custom-control-label {
    color: #6c757d;
}

.confirm_direction .confirm-custom-control-label {
    position: relative;
    margin-bottom: 0;

    font-size: 20px;
    font-family: Roboto, sans-serif;
}

.confirm_direction .confirm-custom-control-label:hover {
    cursor: pointer;
    text-decoration: underline;
}

.confirm_direction .confirm-custom-control-label::before {
    border: 1px solid #5b5b5b;
    border-radius: 50%;
    position: absolute;
    top: 0.4rem;
    left: -1.6rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat center center;
    background-size: 0 0;
}

.confirm_direction .custom-radio .confirm-custom-control-label::before {
    background-color: #ffffff;
}

.confirm_direction .custom-radio .confirm-custom-control-input:checked~.confirm-custom-control-label::before {
    background-color: #0076a3;
    border-radius: 50%;
}

.confirm_direction .custom-radio .confirm-custom-control-input:active ~ .confirm-custom-control-label::before {
    background-color: #0076a3;
}

.confirm_direction .confirm-custom-control-label::before {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}



/* ############ FORM VALIDATION ############ */



.requiredStar {
    color: #fe8300;
    font-weight: bold;
}

#customize_access_card_form.was-validated .form-control:invalid, #customize_access_card_form.form-control.is-invalid, #customize_access_card_form.was-validated .custom-select:invalid, #customize_access_card_form.custom-select.is-invalid,
.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .custom-select.is-invalid,
#customize_access_card_form.was-validated .form-control.is-invalid {
    border-color: #fe8300 !important;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
    border-color: #fe8300 !important;
    box-shadow: none;
}
.invalid-feedback {
    color: #fe8300;
}

.was-validated .form-control:valid, .form-control.is-valid, .was-validated .custom-select:valid, .custom-select.is-valid {
    border-color: #005c7e!important;
    box-shadow: none!important;
    /*box-shadow: 0 0 0 0.2rem rgba(0, 92, 126, 0.25);*/
}

/* ########### ERROR PAGE ############# */


body.error_page {
    height: 100vh;
}
.error_block {
    border: 1px solid black;
    background: #ffffff;
    box-shadow: 0 0 15px 3px rgba(0,0,0,0.33);
    min-height: 180px;
}
.error_block div:first-child p{
    color: #01597F;
    font-weight: bold;
    font-size: 80px;
    margin: auto;
}
.error_block div:last-child p{
    margin: auto 0 auto 20px;
    line-height: 20px;
    font-weight: bold;
}
.error_block div:last-child p span{
    font-size: 40px;
}

@media (max-width: 767px) {
    .error_block > div {
        width: 100%;
    }
    .error_block > div:first-child {
        text-align: center;
    }
    .error_block > div:last-child p{
        width: 100%;
        padding-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-md-0 {
        flex: 0;
        max-width: 0;
    }
}



/* ########### ORDER HISTORY PAGE ############# */




.order_history h2{
    color: #005b7f;
    font-size: 30px;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    margin-bottom: 25px;
}

.order_history table.table-bordered{
    border-color: #000000;
}
.order_history table.table-bordered > thead > tr > th{
    border-color: #000000;
    border-bottom: 0;
}
.order_history table.table-bordered > tbody > tr > td{
    border-color: #000000;
}
.order_history table.table-bordered > tbody > tr:first-child > td {
    border-top: 0;
}

.order_history table.table-bordered > tbody > tr .isbn_column {
    white-space: nowrap;
}

.order_history .template_title {
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.order_history form.order-history-filters {
    margin-bottom: 30px;
}
.order_history form.order-history-filters #historyOrdersFilters .card{
    background-color: #EBEBEB;
    border-radius: 0;
    border: none;
}

.order_history form.order-history-filters #historyOrdersFilters .card .row div .form-group.row img:hover {
    cursor: pointer;
}

.order_history form.order-history-filters button.show-filters {
    background-color: #1D7EA1;
    padding-right: 40px;
    color: #ffffff;

    background-image: -moz-linear-gradient(45deg, transparent 50%, #ffffff 60%),
    -moz-linear-gradient(315deg, #ffffff 40%, transparent 50%) !important;
    background-image: -webkit-linear-gradient(45deg, transparent 50%, #ffffff 60%),
    -webkit-linear-gradient(315deg, #ffffff 40%, transparent 50%) !important;
    background-image: -o-linear-gradient(45deg, transparent 50%, #ffffff 60%),
    -o-linear-gradient(315deg, #ffffff 40%, transparent 50%) !important;
    background-image: -ms-linear-gradient(45deg, transparent 50%, #ffffff 60%),
    -ms-linear-gradient(315deg, #ffffff 40%, transparent 50%) !important;
    background-image: linear-gradient(45deg, transparent 50%, #ffffff 60%),
    linear-gradient(135deg, #ffffff 40%, transparent 50%) !important;
    background-position: calc(100% - 22px) 50%,
    calc(100% - 14px) 50%,
    100% 0;
    background-size: 9px 13px,
    9px 13px;
    background-repeat: no-repeat;
    border-radius: 6px 6px 0 0;
}


.order_history form.order-history-filters button.show-filters.collapsed {
    background-image: -moz-linear-gradient(315deg, #ffffff 40%, transparent 50%),
    -moz-linear-gradient(45deg, #ffffff 40%, transparent 50%) !important;
    background-image: -webkit-linear-gradient(315deg, #ffffff 40%, transparent 50%),
    -webkit-linear-gradient(45deg, #ffffff 40%, transparent 50%) !important;
    background-image: -o-linear-gradient(315deg, #ffffff 40%, transparent 50%),
    -o-linear-gradient(45deg, #ffffff 40%, transparent 50%) !important;
    background-image: -ms-linear-gradient(315deg, #ffffff 40%, transparent 50%),
    -ms-linear-gradient(45deg, #ffffff 40%, transparent 50%) !important;
    background-image: linear-gradient(135deg, #ffffff 40%, transparent 50%),
    linear-gradient(45deg, #ffffff 40%, transparent 50%) !important;
    background-position: calc(100% - 14px) calc(50% + 6px),
    calc(100% - 14px) calc(50% - 6px),
    100% 0;
    background-size: 9px 13px,
    9px 13px;
    background-repeat: no-repeat;
    border-radius: 6px;
}

.order_history form.order-history-filters button.show-filters:hover,
.order_history form.order-history-filters button.show-filters:focus {
    outline: none;
    box-shadow: none;
    color: #ffffff;
    text-decoration: none;
}




.order_history form.order-history-filters div.input-group.input-group-sm {
    margin-bottom: 1px;
}
.order_history form.order-history-filters input,
.order_history form.order-history-filters .input-group-sm > .form-control {
    border-color: #858585;
    font-size: 14px;
}

.order_history form.order-history-filters select,
.order_history form.order-history-filters input,
.order_history form.order-history-filters .input-group-sm > .form-control {
    border-color: #858585;
    font-size: 14px;
}

.order_history form.order-history-filters input:focus,
.order_history form.order-history-filters select:focus,
.order_history form.order-history-filters .input-group-sm > .form-control:focus,
.order_history form.order-history-filters .input-group-append button {
    outline: none;
    box-shadow: none;
}

.order_history form.order-history-filters .input-group-sm > .form-control:focus {
    border-right: none;
}

.order_history form.order-history-filters select:focus {
    border-color: #858585;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.order_history form.order-history-filters .input-group-sm > .form-control {
    padding-top: 6px;
    padding-bottom: 6px;
}

.order_history form.order-history-filters .input-group-prepend label,
.order_history form.order-history-filters .input-group-append button {
    background-color: #ffffff;
    border-color: #858585;
}

.order_history form.order-history-filters .input-group-append button {
    color: #545454;
    border-radius: 0 0.2rem 0.2rem 0 !important;
}
.order_history form.order-history-filters .input-group-append button {
    border-width: 1px 1px 1px 0;
}

.order_history form.order-history-filters .was-validated .input-group-sm > .form-control:invalid ~ .input-group-append button {
    border-color: #fe8300;
}

.order_history form.order-history-filters .was-validated .input-group-sm > .form-control:valid ~ .input-group-append button {
    border-color: #005c7e!important;
}

.order_history form.order-history-filters .input-group-append button:hover {
    background-color: #d7d7d7;
}

.order_history form.order-history-filters .input-group-append button:active {
    background-color: #b7b7b7;
}

.order_history form.order-history-filters select {
    background-image:
            -moz-linear-gradient(45deg, transparent 50%, #575757 60%),
            -moz-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            -webkit-linear-gradient(45deg, transparent 50%, #575757 60%),
            -webkit-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            -o-linear-gradient(45deg, transparent 50%, #575757 60%),
            -o-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            -ms-linear-gradient(45deg, transparent 50%, #575757 60%),
            -ms-linear-gradient(315deg, #575757 40%, transparent 50%) !important;
    background-image:
            linear-gradient(45deg, transparent 50%, #575757 60%),
            linear-gradient(135deg, #575757 40%, transparent 50%) !important;
    background-position:
            calc(100% - 23px) 10px,
            calc(100% - 14px) 10px,
            100% 0;
    background-size:
            9px 13px,
            9px 13px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-top: 4px;
    padding-right: 40px;
}

.order_history form.order-history-filters select#date-type {
    color: #005C7E;
    background-image:
            -moz-linear-gradient(45deg, transparent 50%, #005C7E 60%),
            -moz-linear-gradient(315deg, #005C7E 40%, transparent 50%) !important;
    background-image:
            -webkit-linear-gradient(45deg, transparent 50%, #005C7E 60%),
            -webkit-linear-gradient(315deg, #005C7E 40%, transparent 50%) !important;
    background-image:
            -o-linear-gradient(45deg, transparent 50%, #005C7E 60%),
            -o-linear-gradient(315deg, #005C7E 40%, transparent 50%) !important;
    background-image:
            -ms-linear-gradient(45deg, transparent 50%, #005C7E 60%),
            -ms-linear-gradient(315deg, #005C7E 40%, transparent 50%) !important;
    background-image:
            linear-gradient(45deg, transparent 50%, #005C7E 60%),
            linear-gradient(135deg, #005C7E 40%, transparent 50%) !important;
    background-position:
            calc(100% - 23px) 10px,
            calc(100% - 14px) 10px,
            100% 0;
    background-size:
            9px 13px,
            9px 13px;
}


.i_receipt{
    font-size:18px;
    font-weight: 200;
}

.btn-primary{
    color: #ffffff!important;
    background-color: #015B7E!important;
    border-color: #015B7E!important;
}

.btn-primary:hover{
    border-color: #015B7E!important;
}

.btn-primary:focus, .btn-primary:active{
    outline: none!important;
    box-shadow: none!important;
}

.btn-default:focus, .btn-default:active{
    outline: none;
    box-shadow: none;
}

.order_history form.order-history-filters input.btn {
    color: #ffffff;
    background-color: #015B7E;
    border: none;
    border-radius: 5px;
    width: 100px;
    font-size: 15px;
    font-family: Montserrat, sans-serif;
}


.btn[name=clear_filters], .btn-default{
    color: #005b7f!important;
    background-color: #ffffff!important;
    border: 1px solid #005b7f!important;
}

body > div.datepicker table tr td.active.active {
    background-color: #1D7EA1;
    background-image: -moz-linear-gradient(to bottom, #1D7EA1, #1D7EA1);
    background-image: -ms-linear-gradient(to bottom, #1D7EA1, #1D7EA1);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1D7EA1), to(#1D7EA1));
    background-image: -webkit-linear-gradient(to bottom, #1D7EA1, #1D7EA1);
    background-image: -o-linear-gradient(to bottom, #1D7EA1, #1D7EA1);
    background-image: linear-gradient(to bottom, #1D7EA1, #1D7EA1);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1D7EA1', endColorstr='#1D7EA1', GradientType=0);
    border-color: #1D7EA1 #1D7EA1 #1D7EA1;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
}

.no_result-block h4,
.no_result-block h5 {
    color: #005b7f;
    font-family: Roboto-Light, sans-serif;
    font-weight: bold;
}

.no_result-block .no_exist_orders {
    margin-top: 50px;
}

@media (max-height: 768px) {
    .no_result-block{
        padding-top: 1px!important;
    }
    
    .no_result-block .row{
        padding-top: 1rem!important;
    }

    .no_result-block img {
        width: 70px;
    }
    .no_result-block h4 {
        font-size: 18px;
    }

    .no_result-block h5 {
        font-size: 14px;
    }
}




/* ########### CHANGE PASSWORD FORM ############# */




@media (min-width: 576px) {
    #j-change_password .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

#j-change_password input {
    border: 1px solid #b7b7b7;
    border-radius: 0;
}

#j-change_password input:focus
{
    outline: none;
    box-shadow: none;
}

.password_policy {
    color: #c0c3c5;
    font-size: 14px;
}

.password_policy:hover {
    text-decoration: underline;
    color: #c0c3c5;
}
.password_policy:focus {
    outline: none;
    box-shadow: none;
}

.password_policy_popover {
    height: 180px;
    max-width: 280px;
}

.password_policy_popover_body {
    display: none;
}


/*######################   SPINNER   #####################*/

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#spinnerBlock .spinner-border {
    position: relative;
    display: inline-block;
    width: 5rem;
    height: 5rem;
    vertical-align: text-bottom;
    border-right-color: transparent;
    border-radius: 50%;
}
#spinnerBlock .spinner-border:after {
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    content: '';
    z-index: -1;
    border-radius: 50%;
    border-left: 10px solid #005b7f;
    border-right: 10px solid #00ffff;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}
#spinnerBlock .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

#spinnerBlock .modal-dialog {
    position: absolute;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100%;
}

#spinnerBlock .modal-content {
    height: 100%;
    background: none;
}

#spinnerBlock .modal-content > div {
    padding-top: 20%;
}

#spinnerBlock .spinner {
    width: 7rem;
    height: 7rem;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}


@media print {
    body * {
        visibility: hidden;
    }
    #bodyPrintReceipt, #bodyPrintReceipt * {
        visibility: visible;
    }
    #bodyPrintReceipt {
        position: absolute;
        left: 0;
        top: 0;
    }
}