@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none !important;
}
/* ::-webkit-scrollbar {
  width: 12px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #555;
} */

html,
body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    position: relative;
}

input {
    border: none;
}

main.main__content {
    flex: 1 1 auto;
}

.modal__cart__btn {
    width: 100%;
    margin-top: 2rem;
    border-radius: 5px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-wrap {
    -khtml-box-lines: multiple;
    -webkit-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-nowrap {
    -khtml-box-lines: single !important;
    -webkit-box-lines: single !important;
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-dir-col {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-around {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.flex-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.flex-align-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex-align-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

.flex-align-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.img-fluid {
    max-width: 100%;
}

.slick-arrow,
.slick-slide,
button,
input,
textarea {
    outline: none !important;
}

.slick-arrow {
    cursor: pointer;
}

.btn {
    display: block;
    width: 389px;
    max-width: 100%;
    height: 62px;
    color: #28B810 !important;
    font-weight: 500;
    line-height: 62px;
    text-align: center;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #fff;
}

.btn:hover,
.btn-green {
    background: #003730;
    color: #fff !important;
    border-color: #003730;
}

.btn-green:hover {
    color: #003730 !important;
    background: #fff;
}

/* .wrapper {
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
} */



.info-btn {
    background: url(/static/img/svg/info.svg) 50% 50% no-repeat, #28B810;
    margin-right: 15px;
}

.renew-btn {
    background: url(/static/img/svg/renew.svg) 50% 50% no-repeat, #28B810;
}

.wrapper {
    flex: 1;
}

.none {
    display: none;
}

.active {
    display: block;
}

.row {
    display: flex;
    justify-content: space-between;
}

img, button {
    -webkit-user-select: none;
    user-select: none;
}