@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
body, html {
    background-color: rgb(238, 238, 238);
    margin: 0 auto;
    font-family: Montserrat;
    height: 100%;
}
.logo-main-table {
    background-image: linear-gradient(-45deg, #ffffff, #e4e4e4, #ffffff);
}
.help-name {
font-size: 24px;
}
.main-body {
    height: 100%;
    width: 100%;
    min-width: 650px;
}

@media (min-width: 1000px) {
    .main-body {
        width: 900px;
        margin: auto;
    }
    .filter-box {
        border: 1px solid #cccccc;
    }
}
.logo-and-cart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.logo-img {
    width: 300px;
}
.logo-table {
    padding: 20px;
    height: 120px;
}
.cart-title {
    font-size: 16px;
    font-weight: 600;
}
.cart-title a {
    color: black;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    position: relative;
}
.cart-title a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: black;
    transform: scaleX(0);
    transform-origin: 0% 50% 100%;
    transition: transform 0.2s, visibility 0.2s;
    visibility: hidden;
}
.cart-title a:hover::after {
    transform: scaleX(1);
    visibility: visible;
}
.menu {
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    vertical-align: middle;
}
.menu a {
    position: relative;
    margin-left: 15px;
    margin-right: 15px;
    text-decoration: none;
    color: white;
    transition: color 0.2s;
    cursor: pointer;
}
.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: white;
    transform: scaleX(0);
    transform-origin: 0% 50% 100%;
    transition: transform 0.2s, visibility 0.2s;
    visibility: hidden;
}
.menu a.active::after,
.menu a:hover::after {
    transform: scaleX(1);
    visibility: visible;
}
.active:a {
    transform: scaleX(1);
    visibility: visible;
}
.menu-table {
    background-color: black;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.items-box {
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    height: 100%;
}
.filter-box {
    padding: 4px 4px;
    background-color: white;
    width: 100%;
    height: fit-content;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.filter-margin {
    margin: 5px 0px;
    width: 100%;
    text-align: center;
}
.symbol-filter {
    font-weight: 600;
    font-size: 13px;

}
.filter-button {
    background-color: black;
    color: white;
    padding: 5px;
    border: none;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 13px;
    transition: 0.2s;
    border-radius: 5px;
    margin: 0px 5px;
}

.filter-button-active {
    background-color: rgb(101, 101, 101);
    transition: 0.2s;
    cursor: pointer;
}
.main-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding-top: 15px;
    padding-right: 0px;
    padding-bottom: 15px;
    padding-left: 0px;
    width: 100%;
    height: 100%;
}
.product {
    display: flex;
    flex-direction: column;
    position: relative;
    vertical-align: top;
    width: 260px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 16px;
    margin: 7px 7px;
    box-sizing: border-box;
    background-image: linear-gradient(-45deg, #ffffff, #e4e4e4, #ffffff);
    min-height: 354px;
    transition: 0.3s;
}
.product:hover,
.image-box:hover {
    border: 1px solid #303030;
    transition: 0.3s;
}
.product:hover .product-name {
    text-decoration: underline;
    cursor: pointer;
}
.product-description {
    font-size: 13px;
    margin-bottom: 5px;
    text-align: center;
}
.product-description-large-small p {
    margin: 10px 0px;
}
.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
    
}
.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.price-and-cart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.upload-info-text {
    font-size: 10px;
}
.product-price {
    color: red;
    font-weight: 600;
    font-size: 13px;
    flex-grow: 1;
    text-align: right;
    margin-bottom: 10px;
}
.product-price-large {
    color: red;
    font-weight: 600;
    font-size: 15px;
    flex-grow: 1;
    text-align: right;
}
.add-to-cart:hover,
.filter-button:hover,
.file-upload-label:hover,
.cookies-button:hover,
.preview-button:hover {
    background-color: rgb(101, 101, 101);
    transition: 0.2s;
    cursor: pointer;
}
.upload-info {
    font-size: 8px;
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    text-align: center;
}
.file-upload-input {
    display: none;
}

.upload-container {
    margin-top: 10px;
    text-align: center;
}
.stars-width-info {
    min-width: 8ch;
    display: inline-block;
}
.add-to-cart, .file-upload-label {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: 0.2s;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    width: auto;
    height: auto;
}
.delete-all {
    margin-left: 45px;
    background-color: #ff3131;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: 0.2s;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    width: auto;
    height: auto;
    margin-bottom: 10px;
}
.delete-all:hover,
.delete-button:hover,
.submit-cancel-image:hover {
    background-color: rgb(193, 25, 25);
}
.upload-container a, .upload-container a:visited, .upload-container a:hover, .upload-container a:active {
    color: white;
    text-decoration: none; /* Odstraní podtržení odkazu */
}
.cart-box {
    background-color: white;
    padding: 10px;
    width: 520px;
    min-width: 520px;
    height: auto;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.item-text a {
    color: black;
}
.item-text a:hover {
    color: black;
    text-decoration: underline;
}
.cart-item, .cart-total {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.cart-total {
    margin-top: 15px;
}
h4{
    margin: 15px 0px;
}
.item-text, .item-price, .total-price {
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}
.item-text-sumary {
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}
.item-text a:link {
    text-decoration: none;
}
.item-text a:hover {
    text-decoration: underline;
}
.total-text {
    margin-top: 5px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}
.total-price {
    text-align: right;
    font-size: 16px;
    font-weight: 600;
}
.cart-text-option {
    font-size: 16px;
    font-weight: 600;
}
.customer-info {
    width: 100%;
}
.input-right {
    width: 45%;
    padding: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 12px;
}
.input-left {
    width: 45%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 12px;
}
.input-address {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 12px;
}
.submit-order {
    background-color: #5cb85c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}
.submit-order:hover {
    background-color: #3d8a3d;
}
.submit-save-image {
    background-color: #06ab00;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    width: 200px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}
.submit-cancel-image {
    background-color: #ff3131;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    width: 200px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}
.image-editor-buttion-wrapper {
    max-width: 855px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.payment-options,
.shipping-options {
    display: flex;
    align-items: left;
    flex-direction: column;
    width: 100%;
}
.payment-options-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 13px;
}
.hidden-radio {
    margin-right: 10px;
}
.logos-and-label {
    display: flex;
    align-items: center;
    width: 100%;
    
}
.payment-options-wrapper-next {
    display: flex;
    justify-content: space-between; /* Zarovnání obsahu na obě strany */
    align-items: center;
    width: 100%;
    margin-top: 5px;
}
.payment-options-wrapper-next:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.price {
    text-align: right;
    margin-left: auto; /* Toto zarovná cenu vpravo */
}
.text-payment {
    margin-right: 15px;
}
.logos-and-label img,
.item-text-sumary img {
    margin-right: 5px;
    height: 16px;
}
.item-text-sumary img {
    margin-left: 5px;
}
.cart-img {
    height: 250px;
}
.cart-box-empty {
    background-color: #f6f4f2;
    padding: 10px;
    width: 40%;
    min-width: 470px;
    height: auto;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cart-box-empty-text {
    font-size: 22px;
    font-weight: 600;
}
.item-count {
    display: inline-block;
    min-width: 5ch;
    text-align: left;
}
.item-sumary {
    display: inline-block;
    min-width: 17ch;
    text-align: left;
}
.sumary-text {
    font-weight: 600;
}
.product-box-large {
    background-image: linear-gradient(-45deg, #ffffff, #e4e4e4, #ffffff);
    width: 95%;
    min-height: 280px;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
}
.product-upload {
    display: block;
    width: 95%;
    text-align: center;

}
.product-image-large {
    flex-basis: 150px;
    flex-shrink: 0;
}
.product-image-large img {
    height: 258px;
    border-radius: 5px;
    border: 1px solid #cccccc;
}
.product-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-left: 15px;
}

.product-name-large {
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}
.product-description-large {
    font-size: 12px;
    text-align: left;
    margin: 10px 0px;
}
.product-description-large-small {
    text-align: left;
}
.text-small-left {
    font-size: 12px;
}
.price-and-cart-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.image-container-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 0px;
    border-radius: 4px;
    margin-top: 5px;
    cursor: pointer;
    color: white;
    background-color: black;
    transition: 0.5s;
}
.image-container-text:hover {
    cursor: pointer;
}
.image-box {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 250px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 10px;
    /*height: 235px;
    min-height: fit-content;*/
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-image: linear-gradient(-45deg, #ffffff, #e4e4e4, #ffffff);
    animation: imageSmallShow 0.3s ease-out;
}
.image-container {
    position: relative;
    width: auto;
    height: 150px;
    display: inline-block;
}
.image-container img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
    border: 1px solid #bfbfbf;
}
.delete-button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 5px;
    background-color: #ff3131;
    color: white;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    padding: 0px;
    transition: background-color 0.3s, width 0.3s;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.text-quality-margin-left {
    margin-left: 5px;
}
.text-quality-margin-left:hover {
    color: #aeaeae;
    transition: 0.2s;
}
.quality-good-text {
    transition: 0.2s;
    color: orange !important;
    margin-right: 5px;
}
.quality-poor-text {
    transition: 0.2s;
    color: red !important;
    margin-right: 5px;
}
.quality-excelent-text {
    transition: 0.2s;
    color: green !important;
    margin-right: 5px;
}

.crop-button {
    margin-right: 7px;
    width: 30px;
    height: 30px;
    border: none;
    padding: 0px;
    border-radius: 5px;
    background-color: #06ab00;
    color: white;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s, width 0.3s;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.preview-button {
    margin-right: 7px;
    width: 32px;
    height: 32px;
    border: none;
    padding: 0px;
    border-radius: 5px;
    background-color: black;
    color: white;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, width 0.3s;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.text {
    font-weight: 600;
}
.preview-button .text,
.crop-button .text,
.delete-button .text {
    display: none;
    white-space: nowrap;
    /*margin-left: 5px;*/
}
.delete-button:hover .icon,
.preview-button:hover .icon,
.crop-button:hover .icon {
    display: none;
}
.preview-button:hover,
.crop-button:hover,
.delete-button:hover {
    width: 80px;
}

.preview-button:hover .text,
.crop-button:hover .text,
.delete-button:hover .text {
    display: inline;
}
.crop-button:hover,
.submit-save-image:hover {
    background-color: #059500;
}

.termsAccepted {
    width: 100%;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 600;

}
.text-termsAccepted {
    margin-left: 5px;
}
.active-order {
    background-image: linear-gradient(-45deg, #ffffff, rgb(68, 255, 0), #ffffff);
}
.about-box {
    background-image: linear-gradient(-45deg, #ffffff, #e4e4e4, #ffffff);
    width: 95%;
    height: auto;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
}
.about-image {
    flex-basis: 150px;
    flex-shrink: 0;
}

.about-image img {
    height: 300px;
    border-radius: 5px;
    /* border: 1px solid #cccccc; */
}
.about-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}
.terms-name-large {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}
.terms-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}
.terms-description {
    font-size: 12px;
    margin-bottom: 8px;
    text-align: left;
}
.terms-box {
    background-image: linear-gradient(-45deg, #ffffff, #e4e4e4, #ffffff);
    width: 95%;
    height: auto;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}
.text-termsAccepted a {
    color: black;
}
.cart-text-option-sumary {
    margin-bottom: 10px;
}
.cookies-div {
    position: fixed;
    height: 80px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: lightgray;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}
.cookies-button {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: 0.2s;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    width: auto;
    height: auto;
    margin-top: 10px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    height: 90%;
}
.modal-content-event {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
#balikovna-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.balikovna-show-address {
    text-align: left;
    font-weight: 600;
    display: none;
    margin-top: 5px;
}
#close-modal {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 44px;
}
.row-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    background-image: linear-gradient(45deg, rgb(238, 238, 238), #fefefe, rgb(238, 238, 238));
    height: auto;
    padding-bottom: 5px;
    border-radius: 5px;
    width: 100%;
}
.out-info {
    display: flex;
    flex-wrap: wrap;
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    height: 100%;
    width: auto;
    text-align: left;
    justify-content: space-between;
}
.out-line {
    width: 100%;
    height: 1px;
    background-color: black;
}
.copyright {
    margin-top: 5px;
    font-size: 10px;
    text-align: center;
    position: relative;
    color: black;
}
.out-info-left span,
.out-info-cooperation span {
    display: block;
}
.out-info-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
.out-info-left img {
    margin-right: 10px;
    height: 20px;
}
.out-info-desc a,
.out-info-desc {
    font-size: 11px;
    color: black;
    text-decoration: none;
    margin-top: 5px;
}
.out-info-desc a:hover {
    text-decoration: underline;
}
.font-awesome-margin {
    margin-right: 5px;
}
.out-info-left {
    margin-bottom: 10px;
}
.poster-waiting-div {
    text-align: center;
    padding: 5px 10px;
}
.contact-send-div {
    text-align: center;
    padding: 50px 10px;
}
.poster-waiting-div img {
    height: 550px;
    border-radius: 5px;
}
.poster-waiting-div-text {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}
#dynamic-image {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#dynamic-image.visible {
    opacity: 1;
}
.completing-box {
    background-color: white;
    padding: 10px;
    width: 520px;
    min-width: 520px;
    height: auto;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.waiting-progess {
    height: 250px;
}
.waiting-progess-text,
.waiting-progess-text-next,
.waiting-progess-text-bold {
    font-size: 12px;
    text-align: center;
}
.waiting-progess-text-next {
    font-weight: 600;
    margin: 20px 0px;
}
.waiting-progess-text-bold {
    font-weight: 600;
}
.cancel-box {
    background-color: fffaf9;
    padding: 10px;
    width: 520px;
    min-width: 520px;
    height: auto;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.container {
    width: 50%;
    min-width: 500px;
    margin: auto;
    overflow: hidden;
}

#contact-form {
    background: #fff;
    padding: 20px;
    margin-top: 0px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.margin-top {
    margin-top: 10px;
}
.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 96%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
}

.form-group textarea {
    height: 100px;
}

.email-button {
    background: #5cb85c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.email-button:hover {
    background: #4cae4c;
}
#message {
    resize: none;
}
.image-modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}


.image-modal.closing img {
    animation: popOut 0.3s ease-out;
}
.image-modal img {
    animation: popIn 0.3s ease-out;
    max-width: 80%;
    height: 80%;
    display: block;
    object-fit: contain;
}
@keyframes imageshow {
    from {
    transform: scaleX(0);
    transform-origin: 0% 50% 100%;
    transition: transform 0.2s, visibility 0.2s;
    visibility: hidden;
    }
    to {
    transform: scaleX(1);
    visibility: visible;
    }
}
@keyframes popIn {
    from {
        transform: translateY(-5vh);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes popOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(5vh);
        opacity: 0;
    }
}
@keyframes imageSmallShow {
    from {
        transform: translateY(-3vh);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.image-ratio-ok {
    background-color: #06ab00;
    width: 100%;
}
.image-container-function {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}
.image-container-function-left-aligned {
    text-align: left;
    flex-grow: 1;
}

.image-container-function-right-aligned {
    text-align: right;
    flex-grow: 1;
}
.no-stock {
    font-weight: 600;
    font-size: 13px;
    color: red;
    margin-bottom: 10px;
}
.wait-stock {
    font-weight: 600;
    font-size: 13px;
    color: blue;
    margin-bottom: 10px;
}
.no-stock-div {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.main-title {
    margin: 5px 0px;
}
.main-title-text {
    font-size: 12px;
}
.main-logo img {
    height: 20px;
    width: auto;
}
.main-logo {
    text-align: right;
    margin-top: 20px;
}
.margin-left {
    margin-left: 20px;
}
.main-logo-service {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
    width: 100%;
}

.main-logo-service-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px;
    opacity: 0;
    transform: translateX(-3vh);
    animation: service-wrapper-animated 0.1s ease-out forwards;
}

.main-logo-service-wrapper:nth-child(1) {
    animation-delay: 0s;
}

.main-logo-service-wrapper:nth-child(2) {
    animation-delay: 0.1s;
}

.main-logo-service-wrapper:nth-child(3) {
    animation-delay: 0.2s;
}

.main-logo-service-wrapper:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes service-wrapper-animated {
    from {
        transform: translateX(-3vh);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.main-logo-service-wrapper img {
    height: 55px;
    width: auto;
    margin-bottom: 5px;
}
.main-logo-service-title {
    font-size: 16px;
    font-weight: 600;
}
.main-image-poster img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.main-image-poster {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
#main-image-poster-dynamic {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
#main-image-poster-dynamic.visible {
    opacity: 1;
}
@keyframes service-wrapper-animated {
    from {
        transform: translateX(-5vh);
        opacity: 1;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.usb-cd {
    display: flex;
    align-items: center;
}
.usb-cd img {
    max-width: 75px;
    margin-right: 10px;
}
.usb-cd p {
    flex-grow: 1;
    font-size: 12px;
}
.color-logo {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}
.color-logo img {
    max-width: 150px;
    margin-right: 10px;
    border-radius: 5px;
}
.color-logo-text {
    display: block;
}
.color-logo-text p {
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: 0px;
}
.cr-viewport {
    border: 1px rgb(128, 128, 128) solid !important;
    box-shadow: 0 0 2000px 2000px rgba(0,0,0,.9) !important;
}
.cr-boundary {
    background-color: rgba(0, 0, 0, 1) !important;
}