/* General */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;700&family=Tajawal:wght@400;600&display=swap');
:root{
    --main-blue: #000;
    --main-green: #f54242;
    --light-green: #ff5555;
    --bg-color: rgb(239, 240, 245);
    --font-familly: "Archivo", sans-serif;
    color-scheme: light only;
}
html, body {
    padding: 0;
    margin: 0;
    font-family: var(--font-familly);
    background: var(--bg-color);
}
h1,h2,h3{
    display: block;
    margin: 0;
    color: var(--main-blue);
}
p {
    display: block;
    margin: 0;
}
img{
    border-radius: 25px;
}
button:hover {
    cursor: pointer;
}
*:focus {
    outline: none;
}
/* Nav Bars */
nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

#announcementBar {
    height: 38px;
    background: #000;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

#mainBar {
    height: 60px;
    background: var(--main-green);
    color: rgba(239, 240, 245, .75);
    font-size: 26px;
}
#mainBar > .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
#mainBar > .container > svg {
    cursor: pointer;
}
#mainBar > .container > .ionicon {
    margin: 0 20px;
    width: 34px;
    fill: rgba(239, 240, 245, .75);
}
#mainBar > .container > #logo {
    width: 175px;
}
/* Carousel */
.owl-thumb-item {
    padding: 0;
    border-radius: 25px;
}

.owl-thumbs {
    display: flex;
    width: 100%;
    /*overflow-x: scroll;*/
    margin-top: 10px;
}

.owl-thumb-item {
    margin-right: 10px;
    border: 0;
    border-radius: 15px;
    width: 100px;
}

.owl-thumb-item > img {
    width: 100%;
    border-radius: 15px;
}

.owl-thumb-item.active > img {
    border: #000 1px solid;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 425px) {
    .owl-thumbs {
        display: none;
    }
}

/* Product */
#product {
    padding-top: 60px;
}
.storeName {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--main-blue);
}
.productName {
    font-weight: 700;
    font-size: 40px;
    color: var(--main-blue);
    margin-top: 15px;
    margin-bottom: 25px;
}
.productQty {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.productQty > * {
    background: #fff;
    color: var(--main-blue);
    border-radius: 5px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    box-shadow: #0011340f 0 3px 4px;
    font-family: 'Tajawal';
}
.productQty > div {
    width: 76%;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 18px;
}

.productQty > button {
    width: 48%;
    font-size: 16px;
}

.orderForm {
    background: #fff;
    border: 2px solid var(--main-green);
    margin-top: 10px;
    width: 100%;
    padding: 10px 15px 15px;
    border-radius: 5px;
    text-align: center;
}

.orderForm > span.greenSpan {
    display: block;
    color: var(--main-green);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}

.orderForm > span.error {
    display: none;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    color: rgb(189, 39, 39);
    margin-bottom: 7px;
    margin-top: -4px;
}
.orderForm > input, .orderForm > select {
    padding: 0 20px;
    background: #fff;
    border: 1.5px solid #e9e9e9;
    height: 45px;
    font-size: 14px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 7px;
}

.orderForm > input:focus, .orderForm > select:focus  {
    box-shadow: 0 0 0 0.2rem #1f85f340;
}

@keyframes shakeAnim {
    0% {
        transform: translateX(0);
    }
    
    1% {
        transform: translateX(-3px);
    }
    2% {
        transform: translateX(5px);
    }
    3% {
        transform: translateX(-8px);
    }
    4% {
        transform: translateX(8px);
    }
    5% {
        transform: translateX(-5px);
    }
    6% {
        transform: translateX(3px);
    }
    7% {
        transform: translateX(0);
    }
}

.orderForm > button, .orderButton {
    color: #fff;
    background: var(--main-green);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 0;
    border-radius: 5px;
    height: 45px;
    font-size: 18px;
    font-weight: 700;
    animation: infinite ease-in-out 5s shakeAnim;

}

.orderForm > button:hover {
    background: var(--light-green);
}

.orderForm > .productPrice {
    padding: 10px;
    background: #f6f6f6a6;
    border-radius: 7px;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 45px;
    color: var(--main-blue);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productPrice > .price {
    color: var(--main-green);
}

.section {
    background: #fff;
    border-radius: 25px;
}

.section.one {
    text-align: center;
    padding: 45px 25px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.section.one > h2 {
    width: 100%;
    font-weight: 400;
    margin-bottom: 25px;
    font-size: 24px;
}
.collapse-list{
    max-width: 720px;
    margin: auto;
    border-top: 1px #ececec solid;
}
.collapse-item > .head > .title {
    color: var(--main-blue);
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    text-align: left;
}
.collapse-item > .head > svg{
    width: 34px;
}
.collapse-item > .head > .left-icon {
    margin-left: 10px;
    margin-right: 10px;
}
.collapse-item > .head > .right-icon {
    width: 20px;
    margin-right: 10px;
}
.collapse-item > .head {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}
.collapse-item > .head:hover {
    background: #f3f3f3;
    cursor: pointer;
}
.collapse-item > .head:hover > .title {
    font-weight: underline;
}
.collapse-item {
    border-bottom: 1px #ececec solid;
}
.collapse-item > .content {
    text-align: left;
    padding-bottom: 1.5rem;
    font-size: 16px;
    display: none;
}
.collapse-item > .content > ul {
    list-style: none;
    padding: 0;
}

.blackStripe{
    width: 100%;
    background: #000;
    padding: 90px 15px;
    text-align: center;
}
.blackStripe>h2{
    color: #fff;
    font-size: 34px;
    margin-bottom: 15px;
}
.blackStripe>h3{
    color: #bfbfbf;
    font-weight: 400;
}

.section.two {
    overflow: hidden;
    margin: 60px 0;
}
.section.two > .textDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.section.two > .textDiv > div > h2,  .section.two > .textDiv > div > p{
    width: 100%;
}

.section.two > .imgDiv{
    height: 500px;
    padding: 0;
    /*background-image: url("./images/strongMan.png");*/
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.section.two > .textDiv > div > h2 {
    font-size: 34px;
}

.section.two > .textDiv > div > p {
    padding-top: 15px;
    padding-bottom: 25px;
}
.orderButton {
    width: 200px;
    animation: none;
}

.showMobile {
    display: none;
}
.hideMobile {
    display: inherit;
}
@media only screen and (max-width: 768px) {
    .showMobile {
        display: block;
    }
    .hideMobile {
        display: none;
    }
}
.section.two > .imgTwo{
    /*background-image: url("./images/bikiniWoman.png");*/
}
footer {
    padding-top: 45px;
    width: 100%;
    background: var(--main-blue);
    color: var(--bg-color);
}
footer > div > div > div > ul {
    list-style: none;
}
footer > div > div > div > ul > li {
    color: rgb(239, 240, 245);
    margin-bottom: 10px;
}
footer > div > div > div > ul > li.title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}
footer > div > div > div > ul > li > a {
    display: block;
    color: rgba(239, 240, 245, .75);
    text-decoration: none;
}
footer > div > div > div > ul > li > a:hover {
    color: rgb(239, 240, 245);
    cursor: pointer;
}
footer > div > div > div > p {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
    footer > div > div > div > p, footer > div > div > div > ul {
        padding-left: 15px;
    }
}

.productDescription{
    color: var(--main-blue);
    padding-top: 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}
.copyright {
    font-size: 14px;
    text-align: center;
    color: rgba(239, 240, 245, .75);
    padding-top: 25px;
    padding-bottom: 25px;
}

.copyright > b {
    color: var(--bg-color);
}

.swal2-html-container {
    font-size: 16px!important;
}

#feedbacks {
    padding-bottom: 45px;
}
.langContainer {
    display: flex;
    justify-content: center;
}
button.lang {
    background: transparent;
    border: solid var(--main-green) 2px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    margin: 5px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
button.lang.ar {
    font-family: "Tajawal";
}
#swal2-html-container, #swal2-title {
    font-family: var(--font-familly);
}

button.lang:hover {
    background: var(--main-green);
    color: #fff
}

button.lang > img {
    height: 24px;
    margin-right: 5px;
    border: solid #fff 1px;
}

button.ar > img {
    margin-right: 0;
    margin-left: 5px;
}

@media only screen and (max-width: 425px) {
    h1.productName {
        font-size: 32px;
    }
    .swal2-html-container {
        margin-left: 5px!important;
        margin-right: 5px!important;
    }
    .swal2-title {
        padding-left: 5px!important;
        padding-right: 5px!important;
    }
}

img:not([src]) {
    visibility: hidden;
  }

@-moz-document url-prefix() {
    img:-moz-loading {
        visibility: hidden;
    }
}

.ionicon.heart {
    fill: red;
    width: 24px;
    margin-bottom: -6px;
}

.owl-nav {
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo'!important;
    padding-top: 15px;
}
@media only screen and (max-width: 425px) {
    .owl-nav {
        display: flex;
    }
}

button.owl-prev, button.owl-next {
    font-size: 26px!important;
    color: #000!important;
}

.owl-prev.disabled, .owl-next.disabled {
    color: rgba(0, 0, 0, .5)!important;
}

.owl-nav > .number {
    font-size: 16px!important;
    padding: 0 15px;
}

.owl-dots {
    display: none;
}

#comments  {
    padding-bottom: 20px;
}
#comments > .comment{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 25px;
}

#comments > .comment > p {
    max-width: 560px;
    color: rgba(0, 0, 0, .85);
}

#comments > .comment > p > b {
    display: block;
    margin-bottom: 5px;
    color: #000;
}

#comments > .comment > img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border: 5px solid #fff;
}

.rev {
    color: var(--main-blue);
    margin-bottom: 25px;
    text-align: center;
}

button.selected {
    border: 2px solid var(--main-green);
}

.productDescription > p > img {
    max-width: 100%;
    display: block;
    margin: 30px auto;
}

.productDescription > p > h3 {
    font-family: 'Tajawal';
    font-weight: 600;
    font-size: 18px;
}

.fixed{
    display: block;
    position: fixed;
    top: 0;
}
.comment {
    position: relative;
}
#comments > .comment > img {
    z-index: 100;
}
.five::after{
    content: url(./images/stars/5.svg);
    width: 100px;
    position: absolute;
    right: 0px;
    top: 94px;
}
.fournhalf::after{
    content: url(./images/stars/4.5.svg);
    width: 90px;
    position: absolute;
    right: 10px;
    top: 94px;
}
.productDescription > p > span {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: right;
}