You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
2.4 KiB
135 lines
2.4 KiB
.modal_header{
|
|
height: 450px;
|
|
}
|
|
|
|
.position_basket{
|
|
padding-top: 80px;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
.basket{
|
|
height: 100vh;
|
|
width: 430px;
|
|
position: absolute;
|
|
right: 0;
|
|
left: unset !important;
|
|
background-color: #F7F7F7;
|
|
|
|
.body_left{
|
|
margin: 0 auto;
|
|
float: left;
|
|
position: static;
|
|
display: flex;
|
|
justify-content: center; /*Центрирование по горизонтали*/
|
|
align-items: center; /*Центрирование по вертикали */
|
|
width: 400px;
|
|
}
|
|
|
|
.body_right{
|
|
background: #F7F7F7;
|
|
width: 450px;
|
|
display: table;
|
|
float: left;
|
|
position: static;
|
|
}
|
|
|
|
|
|
.button_close{
|
|
right: 90px;
|
|
position: relative;
|
|
font-size: 40px;
|
|
color: azure;
|
|
}
|
|
|
|
.header{
|
|
width: 430px;
|
|
height: 49px;
|
|
position: absolute;
|
|
padding: 15px;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.body{
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.body_order{
|
|
width: 100%;
|
|
height: 400px;
|
|
overflow: scroll;
|
|
}
|
|
|
|
.body_additionally{
|
|
width: 100%;
|
|
height: 170px;
|
|
}
|
|
|
|
.body_additionally_text{
|
|
font-size: 18px;
|
|
line-height: 21px;
|
|
letter-spacing: 0.02em;
|
|
padding: 10px;
|
|
}
|
|
|
|
.basket_footer{
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 430px;
|
|
background-color: #FFFFFF;
|
|
height: 197px;
|
|
}
|
|
|
|
.check{
|
|
font-size: 18px;
|
|
line-height: 28px;
|
|
padding: 15px;
|
|
}
|
|
|
|
.check_box{
|
|
border-bottom: 1px dashed #8E8E93;
|
|
display: flex;
|
|
}
|
|
|
|
.check_text{
|
|
right: 30px;
|
|
position: absolute;
|
|
}
|
|
|
|
.promo_input{
|
|
border: none;
|
|
margin: 0;
|
|
outline: none;
|
|
-webkit-appearance: none;
|
|
color: #252A48;
|
|
font-size: 18px;
|
|
padding: 0px 20px 0 20px;
|
|
height: 38px;
|
|
}
|
|
|
|
.promo_code_box{
|
|
flex: none;
|
|
padding: 5px;
|
|
order: 0;
|
|
flex-grow: 1;
|
|
margin: 0px 12px;
|
|
border: 1px solid #8E8E93;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.promo_button{
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 18px;
|
|
line-height: 30px;
|
|
color: #1C80E3;
|
|
cursor: pointer;
|
|
transition: color .2s;
|
|
|
|
&:hover{
|
|
color: lighten(#000000, 10%);
|
|
}
|
|
}
|
|
}
|
|
|