@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
}

img {
    width: 100%;
    max-width: 250px;
}

.titles-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 70%;
    margin: 3em auto 7em auto;
}

.titles-container h2 {
    font-size: 3.5rem;
    color: #707677;
    font-weight: 500;
    letter-spacing: -0.1px;
    cursor: pointer;
}

.titles-container h2.selected {
    color: black;
    font-weight: 700;
}

.line {
    width: 6rem;
    border-bottom: 1.5px solid #e1e1e1;
}

.slider-container {
    width: 80%;
    margin: 0 12% 0 8%;
}


input {
    display: none;
}
  
label {
display: block;
/* margin-top:30px; */
}

.arrows {
    position: absolute;
    width: 85%;
    left:7%;
}

.arrow-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    
    background-color: #fff;
    box-shadow: 0px 14px 26px rgba(39, 13, 48, 0.25);
}

.arrow-left {
    position: absolute;
    left: 0px;
}

.arrows .arrow--active {
    background-color: #181818;
    box-shadow: none;
}

.arrow--active .arrow {
    background: #fff;
}

.arrow--active .arrow:before, .arrow--active .arrow:after {
    background: #fff;
  }

.arrow-right {
    position: absolute;
    right:0px;
}

.arrow {
    background: #181818;
    height: 1px;
    width: 11px;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
}

  
.arrow-left .arrow:before {
    left: -1px;
    top: -3px;
    transform: rotate(-45deg);
}

.arrow-left .arrow:after {
    left: -1px;
    top: 3px;
    transform: rotate(45deg);
}

.arrow:before, .arrow:after {
    content: "";
    background: #181818;
    position: absolute;
    height: 1px;
    width: 8px;
  }

  .arrow:before {
    right: -1px;
    bottom: -3px;
    transform: rotate(-45deg);
  }

  .arrow:after {
    right: -1px;
    top: -3px;
    transform: rotate(45deg);
  }

.slider {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    width: 100%;
    overflow: hidden;
}


.prod-container {
    min-width: 33.33%;
    display:flex;
    justify-content: center;
}

    
.prod-details{
    text-align: left;
    flex-basis: 50%;
    display: flex;
    width: 35%;
    flex-direction: column;
    justify-content: space-between;
}

.txt {
    font-family: 'Montserrat', sans-serif;
    color: #1b1b1b;
    line-height: 1.5;
    font-size: 1.7rem;
}

.example_c {
    color: #f0f0f8 !important;
    text-transform: uppercase;
    background: #181818;
    padding: 13px 18px;
    border: 3px solid #181818 !important;
    border-radius: 4px;
    display: inline-block;
    margin: 1rem auto 1rem auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700 !important;

    text-align:center;
    text-decoration: none;
}

.example_c:hover {
    color: #181818 !important;
    background: #fff;
    border-color: #181818 !important;
    transition: all 0.4s ease 0s;
}


.promotion-price{
font-size: 4rem;
color:#181818;
font-weight:bold;
}

.promotion-sup{
top: -1.2rem; 
font-size: 2.2rem;
}

.regular-price{
margin-left: 1rem;
    color: #636363;
    font-size: 1.4rem;
text-decoration:line-through;
}

.btn {
font-size:1.4rem;
}

.notDisplay {
    display: none;
}

@media only screen and (max-width: 1200px) {
  .txt {
    font-size:16px;
  }
.promotion-sup {
top: -1.2rem; 
font-size: 1.6rem;
}
.promotion-price{
font-size: 3rem;
}
.btn {
font-size:1.3rem;
}
.example_c {
    padding: 13px 15px;
}
}