@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
:root {
    --background: #f0f2f5;
    --site-color: #3b4550;
    --color: #ff2914;
    --button-color: #fff;
    --input-color: #fff;
    --app-menu: #fff;
}
body {
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0px
}

svg {
    width: 24px;
    height: 24px;
    fill: var(--site-color)
}

body.opened-menu .app-menu #top-menu {
    display: block;
    opacity: 1
}

body.opened-menu .app-menu .close-btn {
    display: block
}

body.opened-menu .app-menu .menu-btn {
    display: none
}

.app-menu {
    position: fixed;
    bottom: 0px;
    width: 100%;
    background: #ffffff;
    left: 0px;
    bottom: 0px;
    z-index: 99999;
    padding: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-top: 1px solid #27ae60;
}

.app-menu ul {
    padding: 0px;
    margin: 10px 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    display: none
}

.app-menu ul li {
    list-style: none
}

.app-menu ul li a {
    display: block;
    font-weight: 600;
    padding: 10px 0;
    font-size: 14px
}

.app-menu .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.app-menu .menu .close-btn {
    display: none
}

.app-menu .menu .left {
    display: flex;
    align-items: center
}

.app-menu .menu .button {
    color: var(--button-color);
    background: #27ae60;;
    padding: 8px 15px;
    margin-left: 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold
}

.app-container {
    width: 600px;
    background: var(--background);
    color: var(--site-color);
    margin: 0 auto
}

@media (max-width: 600px) {
    .app-container {
        width: 100% !important
    }
}

.app-container .top-image .image {
    width: 100%;
    height: 500px;
    background-size: 100% 100%
}

.app-container .cart-image .image {
    width: 100%;
    height: 600px;
    background-size: 100% 100%
}

.app-container .content {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0 15px
}

.app-container .content img {
    width: 100%
}

a {
    text-decoration: none !important
}

.cart-button {
    display: flex;
    width: 100%;
    height: 50px;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    color: var(--button-color);
    font-weight: 700;
    letter-spacing: 5px;
    background: #00499a;
}

.cart-button svg {
    fill: var(--button-color);
    width: 30px;
    height: 30px;
    margin-right: 5px
}

.inline-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px
}

.file-input, textarea, select, input {
    background: var(--input-color);
    border: 1px solid transparent;
    padding: 15px;
    color: var(--site-color);
    border-radius: 3px;
    /*font-size: 12px;*/
    width: 100%
}

.file-input:focus, textarea:focus, select:focus, input:focus {
    border-color: #27ae60;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none
}

select {
    height: 45px;
    padding: 0px !important;
    text-indent: 5px
}

label {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold
}

a {
    color: var(--site-color);
    text-decoration: none !important
}

* {
    outline: none !important
}

.row {
    display: flex;
    margin: 0 -5px
}

.col {
    width: 100%;
    padding: 0 25px;
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    flex-basis: auto
}

.col.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.col.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.col.col-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.col.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.col.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.col.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.col.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.col.col-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.col.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

.col.col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.app-comments {
    padding: 10px 15px;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    flex-direction: column
}

.app-comments h2 {
    margin: 15px 0px;
    font-size: 24px;
    color: #27ae60;;
    text-transform: uppercase;
    text-align: center
}

.app-comments .comment {
    height: 400px;
    overflow: scroll;
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.03)
}

.app-comments .comment .item {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12)
}

.app-comments .comment .item .name {
    font-size: 14px;
    color: #27ae60;;
    font-weight: bold;
    margin-bottom: 5px
}

.app-comments .comment .item .message {
    font-weight: 600;
    font-size: 12px
}

.slogans .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
    padding: 20px 10px
}

.slogans .item small {
}

.slogans .item span {
    margin: 5px 0;
    font-size: 15px;
    font-weight: bold;
    animation-delay: 1s;
    text-transform: uppercase
}

.app-comment, .app-cart {
    padding: 10px 15px;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    flex-direction: column
}

.app-comment h2, .app-cart h2 {
    margin: 5px 0px;
    font-size: 24px;
    color: #2c3e50;
    text-transform: uppercase;
    text-align: center
}

.app-comment .row, .app-cart .row {
    flex-wrap: wrap
}

.content {
    padding-bottom: 60px !important;
}

.app-comment button, .app-cart button {
    display: flex;
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    align-items: center;
    justify-content: center;
    color: var(--button-color);
    background: #c0392b;
}

.app-comment button svg, .app-cart button svg {
    fill: var(--button-color);
    width: 30px;
    height: 30px;
    margin-right: 5px
}

hr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    clear: both;
    width: 100%
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

.radio, .radio__label, .radio__label:after, .radio__label:before {
    box-sizing: border-box
}

.radio__container .radio-inline {
    display: inline-block;
    margin-right: 10px
}

.radio__container .radio {
    opacity: 0;
    display: none;
    width: 0;
    margin: 0;
    overflow: hidden;
    -webkit-appearance: none
}

.radio__container .radio__label {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 10px 10px 28px;
    cursor: pointer;
    font-size: 16px;
    vertical-align: bottom;
    transition: color 200ms ease
}

.radio__container .radio__label:before, .radio__container .radio__label:after {
    position: absolute;
    content: "";
    border-radius: 50%;
    transition: transform 200ms ease, border-color 200ms ease
}

.radio__container .radio__label:before {
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #dbdbdb
}

.radio__container .radio__label:after {
    top: 15px;
    left: 5px;
    width: 10px;
    height: 10px;
    transform: scale(0);
    background-color: #27ae60;
}

.radio__container .radio__label:hover {
}

.radio__container .radio__label:hover:before {
    border-color: #27ae60;
}

.radio__container .radio:checked + .radio__label {
    color: var(--site-color)
}

.radio__container .radio:checked + .radio__label:before {
    border-color: #27ae60;
}

.radio__container .radio:checked + .radio__label:after {
    transform: scale(1)
}

@keyframes animation_one {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    10% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes animation_two {
    0% {
        opacity: 0
    }
    10% {
        opacity: 0
    }
    20% {
        opacity: 1
    }
    100% {
        opacity: 1
    }
}

@keyframes animation_three {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    20% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    30% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes animation_four {
    0% {
        opacity: 0
    }
    30% {
        opacity: 0
    }
    40% {
        opacity: 1
    }
    100% {
        opacity: 1
    }
}

.paketsatir {
    display: contents;
}

.gift {
    display: contents;
    color: #e74c3c;
}

button[name="sbmt"] {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
}

@keyframes paketName {
    0% {
        color: #d63031;
    }
    25% {
        color: #00b894;
    }
    50% {
        color: #00b894;
    }
    100% {
        color: #2d3436;
    }
}

#paketName {
    display: contents;
    animation-name: paketName;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}


.app-comments .comment,
.app-menu {
    background: var(--app-menu) !important;
}

.app-menu .menu .button {
    width: 60%;
    text-align: center;
    margin: 0px;
}

body {
    overflow-x: hidden;
}

.slogans {
    overflow: hidden;
}

.app-container .content img {
    width: 100% !important;
    height: auto !important;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0.7em;
    margin-left: 0;
}

input[type="checkbox"]:focus {
    outline: thin dotted;
}

input[type="checkbox"] {
    position: relative;
    width: 25px;
    height: 20px;
    padding: 0px;
    border: none !important;
    border-radius: 3px;
    background: #e2e2e2;
}

input[type="checkbox"]::after {
    content: '';
    width: 40%;
    height: 22%;
    border-radius: 0;
    margin: auto;
    position: absolute;
    top: 35%;
    left: 31%;
    -webkit-transition: background 0.25s ease;
    transition: background 0.25s ease;
}

input[type="checkbox"]:checked {
    background: var(--color);
}

input[type="checkbox"]:checked::after {
    border-left: 2px solid;
    border-bottom: 2px solid;
    border-radius: 0;
    -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
    transform: rotate(-45deg) translate3d(0, 0, 0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    border-color: var(--button-color) !important;
}

/* IE 10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    input[type="radio"], input[type="checkbox"] {
        border: none;
    }

    input[type="checkbox"] {
        background-color: transparent;
    }
}

.checkbox {
    font-size: 11px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.checkbox label {
    margin: 0px;
    padding: 0px;
    font-weight: 500;
}