.croppie-container {
    width: 100%;
    height: 100%;
}

.croppie-container .cr-image {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    max-height: none;
    max-width: none;
}

.croppie-container .cr-boundary {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
    position: absolute;
    border: 2px solid #fff;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.croppie-container .cr-resizer {
    z-index: 2;
    -webkit-box-shadow: none;
    box-shadow: none;
    pointer-events: none;
}

.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
    position: absolute;
    pointer-events: all;
}

.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
    display: block;
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid black;
    background: #fff;
    width: 10px;
    height: 10px;
    content: '';
}

.croppie-container .cr-resizer-vertical {
    bottom: -5px;
    cursor: row-resize;
    width: 100%;
    height: 10px;
}

.croppie-container .cr-resizer-vertical::after {
    left: 50%;
    margin-left: -5px;
}

.croppie-container .cr-resizer-horisontal {
    right: -5px;
    cursor: col-resize;
    width: 10px;
    height: 100%;
}

.croppie-container .cr-resizer-horisontal::after {
    top: 50%;
    margin-top: -5px;
}

.croppie-container .cr-original-image {
    display: none;
}

.croppie-container .cr-vp-circle {
    border-radius: 50%;
}

.croppie-container .cr-overlay {
    z-index: 1;
    position: absolute;
    cursor: move;
    -ms-touch-action: none;
    touch-action: none;
}

.croppie-container .cr-slider-wrap {
    width: 75%;
    margin: 15px auto;
    text-align: center;
}

.croppie-result {
    position: relative;
    overflow: hidden;
}

.croppie-result img {
    position: absolute;
}

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/

.cr-slider {
    -webkit-appearance: none;
    /*removes default webkit styles*/
    /*border: 1px solid white; *//*fix for FF unable to apply focus style bug */
    width: 300px;
    /*required for proper track sizing in FF*/
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: transparent;
}

.cr-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}

.cr-slider:focus {
    outline: none;
}

/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/

.cr-slider::-moz-range-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}

/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
    outline: 1px solid white;
    outline-offset: -1px;
}

.cr-slider::-ms-track {
    width: 100%;
    height: 5px;
    background: transparent;
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    border-color: transparent; /*leave room for the larger thumb to overflow with a transparent border */
    border-width: 6px 0;
    color: transparent; /*remove default tick marks*/
}

.cr-slider::-ms-fill-lower {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.cr-slider::-ms-fill-upper {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.cr-slider::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: 1px;
}

.cr-slider:focus::-ms-fill-lower {
    background: rgba(0, 0, 0, 0.5);
}

.cr-slider:focus::-ms-fill-upper {
    background: rgba(0, 0, 0, 0.5);
}

/*******************************************/

/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 1;
}

.cr-rotate-controls button {
    border: 0;
    background: none;
}

.cr-rotate-controls i:before {
    display: inline-block;
    font-style: normal;
    font-weight: 900;
    font-size: 22px;
}

.cr-rotate-l i:before {
    content: '\21BA';
}

.cr-rotate-r i:before {
    content: '\21BB';
}

.snackbar-container {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transition-property: top, right, bottom, left, opacity;
    transition-property: top, right, bottom, left, opacity;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    min-height: 14px;
    background-color: #070b0e;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
    line-height: 22px;
    padding: 18px 24px;
    bottom: -100px;
    top: -100px;
    opacity: 0;
    z-index: 9999;
}

.snackbar-container .action {
    background: inherit;
    display: inline-block;
    border: none;
    font-size: inherit;
    text-transform: uppercase;
    color: #4caf50;
    margin: 0 0 0 24px;
    padding: 0;
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
    cursor: pointer;
}

@media (min-width: 640px) {
    .snackbar-container {
        min-width: 288px;
        max-width: 568px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        border-radius: 2px;
        margin: 24px;
    }
}

@media (max-width: 640px) {
    .snackbar-container {
        left: 0;
        right: 0;
        width: 100%;
    }
}

.snackbar-pos.bottom-center {
    top: auto !important;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.snackbar-pos.bottom-left {
    top: auto !important;
    bottom: 0;
    left: 0;
}

.snackbar-pos.bottom-right {
    top: auto !important;
    bottom: 0;
    right: 0;
}

.snackbar-pos.top-left {
    bottom: auto !important;
    top: 0;
    left: 0;
}

.snackbar-pos.top-center {
    bottom: auto !important;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.snackbar-pos.top-right {
    bottom: auto !important;
    top: 0;
    right: 0;
}

@media (max-width: 640px) {
    .snackbar-pos.bottom-center, .snackbar-pos.top-center {
        left: 0;
        -webkit-transform: none;
        transform: none;
    }
}

.artwork-thumbnail {
    width: 100%;
    padding: 5px;
    display: inline-block;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

input[type=search] {
    background: none;
    font-size: 18px;
    color: #676f80;
    text-align: left;
    height: 32px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #676f80;
}

@media (max-width: 991px) {
    input[type=search] {
        margin-bottom: 10px;
    }
}

select.form-control {
    border-radius: 4px;
}

select.form-control.bigger {
    height: 52px !important;
}

div.table div.tr {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

div.table div.tr .td {
    min-height: 2em;
    padding-top: 10px;
    padding-bottom: 10px;
}

div.table div.thead {
    font-weight: bold;
    padding: 10px 20px;
}

div.table div.thead.thead-dark {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.fake-fileinput {
    cursor: pointer;
}

.change-photo {
    font-size: 150%;
}

#artist-aside .change-photo {
    position: absolute;
    left: 50%;
    bottom: 0.5em;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.sub-bnr .change-photo {
    position: absolute;
    left: 1em;
    top: 0.5em;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

input.form-control[type=file] {
    border: 0;
}

.alert-js {
    display: none;
}

@media (max-width: 767px) {
    .hidden-mobile {
        display: none;
    }
}

@media (min-width: 768px) {
    .hidden-desktop {
        display: none;
    }
}

.form-control.is-invalid {
    border-color: #dc3545 !important;
}

.shop-sidebar .profile-aside {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid black;
    margin-top: -100%;
}

@media (min-width: 280px) and (max-width: 767px) {
    .shop-sidebar .profile-aside {
        width: 30%;
    }
}

.sub-bnr {
    background-size: cover;
}

@media (max-width: 767px) {
    .sub-bnr {
        min-height: 120px;
    }
}

@media (max-width: 767px) {
    header .logo img {
        max-height: 31px;
    }
}

header {
    position: relative;
    margin-top: 67px;
}

.images-slider .slides {
    padding: 5%;
}

.images-slider .slides li {
    position: relative;
    padding: 0;
}

.images-slider .slides li:before {
    content: "";
    float: left;
    padding-top: 100%;
}

.images-slider .slides li img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    min-width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: contain;
    object-fit: contain;
}

.flex-control-thumbs {
    padding: 0 20%;
}

.flex-control-thumbs li {
    width: 46%;
    position: relative;
    margin: 2%;
    padding: 0;
}

.flex-control-thumbs li:before {
    content: "";
    float: left;
    padding-top: 100%;
}

.flex-control-thumbs li img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    min-width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767px) {
    .flex-control-thumbs {
        padding: 10px;
    }
}

.flex-direction-nav {
    top: 20px;
}

.product .thumb {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-color: #F8F9FA;
}

.product .thumb img {
    display: block;
    min-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner_title {
    top: 90%;
}

.special-banner {
    padding-top: 2%;
}

.special-banner .item {
    width: 100%;
}

.special-banner .tab-content {
    display: block;
}

.special-banner li {
    text-align: center;
}

.special-banner .nav {
    margin: 0px;
    font-size: 16px;
}

.special-banner .product {
    line-height: 1;
}

.special-banner .product .item-name {
    line-height: 1;
}

/*.special-banner .product .item-name a.i-tittle {*/
/*    margin-bottom: 5px;*/
/*    margin-top: 5px;*/
/*    min-height: 5px;*/
/*    font-size: 16px;*/
/*}*/

.special-banner #add_product_to_chart .modal-dialog {
    max-width: 100%;
    width: 50%;
}

.special-banner .knowledge-share .row {
    width: 102%;
    margin-left: auto;
    margin-right: auto;
}

/*.special-banner .knowledge-share a {*/
/*    padding-top: 3%;*/
/*    font-size: 16px;*/
/*    font-weight: bold;*/
/*    margin-top: 0px;*/
/*    min-height: 32px;*/
/*    min-width: 100%*/
/*}*/

.special-banner .knowledge-share .b-tittle {
    width: 100%;
    text-align: center;
}

.special-banner .img-responsive {
    max-width: 100%;
}

/*.special-banner .arrival-block .item-name a.i-tittle {*/
/*    min-height: 40px;*/
/*}*/

.special-banner .arrival-block .tab-content {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 991px) and (min-width: 768px) {
    .special-banner .arrival-block .item {
        width: 100% !important;
    }
}

.special-banner ul {
    padding-bottom: 2%;
}

.shop-detail .item-owner {
    margin: 0px;
}

.modal-dialog {
    max-width: 700px;
}

.modal-body {
    padding-left: 10%;
    padding-right: 10%;
}

.logo {
    font-size: 22px;
}

.top-bar .top-bar-logo {
    margin-top: 0px;
}

@media (max-width: 1000px) {
    .special-banner-item-hide {
        display: none !important;
    }
}

#update_price .value {
    float: left;
}

#update_price span {
    padding: 5px;
}

.friends_list {
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
}

.friends_list img {
    max-width: 50%;
}

.friends_list td {
    padding-top: 5%;
}

.author-details {
    margin-top: 2%;
}

#order-wizard {
    min-height: 500px;
}

#order-wizard img {
    transition: none !important;
    -webkit-transition: none !important;
}

#order-wizard #venus-order-wizard {
    color: #2d3a4b;
}

#order-wizard #venus-order-wizard h1,
#order-wizard #venus-order-wizard h2,
#order-wizard #venus-order-wizard h3,
#order-wizard #venus-order-wizard h4,
#order-wizard #venus-order-wizard h5 {
    color: #2d3a4b;
}

#order-wizard #venus-order-wizard .button {
    background: #2d3a4b;
    height: 51px;
    text-align: center;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    vertical-align: middle;
    line-height: 51px;
    padding: 0 40px;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

#order-wizard #venus-order-wizard .button.red {
    background: #2d3a4b;
    color: white;
}

#order-wizard #venus-order-wizard .button:hover,
#order-wizard #venus-order-wizard .button:focus {
    background: #ffe115 !important;
    color: #2d3a4b !important;
}

#order-wizard #venus-order-wizard .button:hover:before,
#order-wizard #venus-order-wizard .button:focus:before {
    display: none !important;
}

#order-wizard #venus-order-wizard .picture-quality,
#order-wizard #venus-order-wizard #box-text-form-group {
    display: none !important;
}

#order-wizard #venus-order-wizard .product-list .item label .current-price {
    color: black;
}

#order-wizard #venus-order-wizard .product-list .item.active label,
#order-wizard #venus-order-wizard .product-list .item:hover label {
    background: #ffe115 !important;
    color: #676f80 !important;
}

#order-wizard #venus-order-wizard .product-list .item.active label .current-price,
#order-wizard #venus-order-wizard .product-list .item:hover label .current-price {
    color: black !important;
}

#order-wizard #venus-order-wizard .product-list .item.active label .old-price,
#order-wizard #venus-order-wizard .product-list .item:hover label .old-price {
    color: #676f80 !important;
}

