/* resets */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* fonts */

/*@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/Inter-Light.otf');
    font-weight: 300;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/Inter-Bold.otf');
    font-weight: 600;
}*/

@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/Comfortaa-Regular.ttf');
    font-weight: 400;
}

body * {
    font-family: 'Comfortaa';
}

a {
    text-decoration: none;
    color: inherit;
}


/* main-styles */


/* general */

body {
    box-sizing: border-box;
    padding-bottom: 77px;
}

.static-bg {
    background-image: url(../img/bg.jpg);
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}


.cont {
    width: 100%;
    /* padding: 0 45px; */
    box-sizing: border-box;
    max-width: 600px;
    margin: 0 auto;
}


/* bottom-menu */

.bottom-menu {
    position: fixed;
    width: 100%;
    height: 56px;
    bottom: 0;
    left: 0;
    /* background-color: #3F4C43; */
    -webkit-box-shadow: 0px -7px 35px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px -7px 35px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px -7px 35px 0px rgba(0, 0, 0, 0.3);
    z-index: 99;
    background: linear-gradient(to right,  #152c28, #11221f);/*#11221f, #152c28)*/
}

.bottom-links {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    justify-content: space-around;
    height: 56px;
    padding: 0 36px 0 13px;
}


.bottom-links__el svg {
    height: 26px;
}

.static-color {
    color: #ffffff;
}

.bottom-links__el {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 16px;
    color: #fff;
}

@media screen and (max-width: 410px) {
    .bottom-links {
        padding: 0;
    }
}


.arrow-back {
    height: 20px;
}

.arrow-back path {
    fill: #ff975d !important;
}

/* page-title */

.title-section {
    position: sticky;
    z-index: 1;
    top: 0;
    overflow: hidden;
    /*padding: 32px 0 32px;*/
    padding: 17px 0 15px;
    background: linear-gradient(to right, /*#152c28, #11221f*/#18322e, #152c28);
    border-radius: 0px 0px 25px 25px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.page-title {
    text-align: center;
    font-size: 20px;
    /*font-weight: bold;*/
    color: #fff;
    line-height: 1.5;
}

.title-section a {
    position: absolute;
    left: 28px;
    top: 20px;
}

@media screen and (min-width: 800px) {
    .cont {
        padding: 0
    }
}


.d-none {
    display: none;
}

#link-cart-order {
    position: relative;
}

#link-cart-order span {
    position: absolute;
    height: 16px;
    background-color: #995A39;
    border-radius: 100%;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    padding: 0 6px;
    text-align: center;
    left: 100%;
    top: -13px;
}