body {
    padding: 0;
}
.product-title {
    font-weight: 800;
    font-size: 30px;
    color: #333333;
    margin-bottom: 25px;
}

.product-description {
    font-size: 21px;
    color: #333333;
    line-height: 32px;
}

.tab-text {
    font-size: 18px;
    color: #333333;
    line-height: 32px;
}

.product-price {

    font-size: 26px;
    font-weight: 800;
    color: #0a1c2e;
}

.img-responsive {
    width: 500px;
    height: 500px;
}

.blue-button {
    border-radius: 3px;
    border: none;
    width: 125px;
    height: 45px;
    color: #fff;
    background-color: #0a1c2e;
    transition: 0.2s;
}

.blue-button:hover {
    scale: 1.02;
    background-color: #102c49;
}

.price-wrapper {
    margin-bottom: 20px;
    margin-top: 35px;
}

.needs-line-break {
    white-space: pre-line;
}

.review-block {
    margin-top: 10px;
    margin-left: 30px;
    border-left: 3px solid #ccc;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.review-block-buttons {
    list-style-type: none;
    margin-top: 20px;
}

.review-block-buttons li {
    float: left;
    margin-right: 10px;
}

#answer-popup-form, #review-popup-form {
    z-index: 1000;
    padding: 20px;
    border-radius: 4px;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}

.fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(70, 70, 70, 0.5);
    z-index: 9999;
}

.popup-close-button {
    cursor: pointer;
    float: right;
}

.popup-title {
    float: left;
    margin-top: 0;
}

/* Portrait tablets and small desktops */
@media (max-width: 991px) {
    #answer-popup-form, #review-popup-form {
        z-index: 1000;
        padding: 20px;
        border-radius: 4px;
        background-color: white;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
    }
}

/*tabs*/

/* Android 2.3 :checked fix */
@keyframes fake {
    from {
        opacity: 1;
    }
    to {
        opacity: 1;
    }
}
body {
    animation: fake 1s infinite;
}
.worko-tabs {
    margin: 20px;
    width: 80%;
}

.state {
    visibility: hidden;
}


.worko-tabs .flex-tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.worko-tabs .flex-tabs .tab {
    flex-grow: 1;
    max-height: 40px;
}
.worko-tabs .flex-tabs .panel {
    background-color: #fff;
    padding: 20px;
    min-height: 300px;
    display: none;
    width: 100%;
    flex-basis: auto;
}
.worko-tabs .tab {
    display: inline-block;
    padding: 10px;
    vertical-align: top;
    background-color: #eee;
    cursor: hand;
    cursor: pointer;
    border-left: 10px solid #ccc;
}
.worko-tabs .tab:hover {
    background-color: #fff;
}
#tab-one:checked ~ .tabs #tab-one-label, #tab-two:checked ~ .tabs #tab-two-label, #tab-three:checked ~ .tabs #tab-three-label, #tab-four:checked ~ .tabs #tab-four-label {
    background-color: #fff;
    cursor: default;
    border-left-color: rgba(97, 149, 255, 0.83);
}
#tab-one:checked ~ .tabs #tab-one-panel, #tab-two:checked ~ .tabs #tab-two-panel, #tab-three:checked ~ .tabs #tab-three-panel, #tab-four:checked ~ .tabs #tab-four-panel {
    display: block;
}
@media (max-width: 600px) {
    .flex-tabs {
        flex-direction: column;
    }
    .flex-tabs .tab {
        background: #fff;
        border-bottom: 1px solid #ccc;
    }
    .flex-tabs .tab:last-of-type {
        border-bottom: none;
    }
    .flex-tabs #tab-one-label {
        order: 1;
    }
    .flex-tabs #tab-two-label {
        order: 3;
    }
    .flex-tabs #tab-three-label {
        order: 5;
    }
    .flex-tabs #tab-four-label {
        order: 7;
    }
    .flex-tabs #tab-one-panel {
        order: 2;
    }
    .flex-tabs #tab-two-panel {
        order: 4;
    }
    .flex-tabs #tab-three-panel {
        order: 6;
    }
    .flex-tabs #tab-four-panel {
        order: 8;
    }
    #tab-one:checked ~ .tabs #tab-one-label, #tab-two:checked ~ .tabs #tab-two-label, #tab-three:checked ~ .tabs #tab-three-label, #tab-four:checked ~ .tabs #tab-four-label {
        border-bottom: none;
    }
    #tab-one:checked ~ .tabs #tab-one-panel, #tab-two:checked ~ .tabs #tab-two-panel, #tab-three:checked ~ .tabs #tab-three-panel, #tab-four:checked ~ .tabs #tab-four-panel {
        border-bottom: 1px solid #ccc;
    }
}







:root {
    --transparent-grey: rgba(0,0,0,0.5);
}

/* Width of carousel */
#window, #slide-container {
    width: 400px;
}

/* Height of carousel */
#slide-container {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    min-height: 200px;
}

.slides {
    display: block;
}

/* Style of arrows */
.arrow {
    color: white;
    font-size: 26px;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    padding: 16px;
    background-color: rgba(0,0,0,0);
    transition: background-color 0.3s ease;
}

.arrow:hover {
    text-decoration: none;
    color: #ffff;
    cursor: pointer;
    background-color: var(--transparent-grey);
}

#next {
    left: 100%;
    transform: translate(-100%, -50%);
    border-radius: 4px 0px 0px 4px;
}

#previous {
    border-radius: 0px 4px 4px 0px;
}

#dotsContainer {
    width: 100%;
    height: 20px;
    text-align: center;
}

.dots {
    width: 8px;
    height: 8px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 100%;
    display: inline-block;
    margin: 8px 2px;
}

.dots:hover {
    cursor: pointer;
    background-color: rgba(0,0,0,0.4);
}

.activeDot {
    background-color: rgba(0,0,0,0.6);
}


.clicked-btn-text {
    opacity: 0!important;
    display: none!important;
    color: black!important;
}
.clicked-btn-ico {
    opacity: 1!important;
    display: block!important;
    color: white!important;
}

.slick-prev:before, .slick-next:before {
    color: #000000 !important;
}







