Files
tripwithbonus/static/css/styles.css
2023-09-20 17:32:24 +03:00

2141 lines
37 KiB
CSS

/* Reset and base styles */
* {
padding: 0px;
margin: 0px;
border: none;
font-family: 'Inter';
}
/*@font-face {*/
/* font-family: 'Inter';*/
/* src:*/
/* !*url("/static/fonts/inter/Inter-Black.ttf") format('truetype'),*!*/
/* !*url("/static/fonts/inter/Inter-Bold.ttf") format('truetype'),*!*/
/* !*url("/static/fonts/inter/Inter-ExtraBold.ttf") format('truetype'),*!*/
/* !*url("/static/fonts/inter/Inter-ExtraLight.ttf") format('truetype'),*!*/
/* !*url("/static/fonts/inter/Inter-Light.ttf") format('truetype'),*!*/
/* !*url("/static/fonts/inter/Inter-Medium.ttf") format('truetype'),*!*/
/* !*url("/static/fonts/inter/Inter-Regular.ttf") format('truetype'),*!*/
/* url("/static/fonts/inter/Inter-SemiBold.ttf") format('truetype'),*/
/* url("/static/fonts/inter/Inter-Thin.ttf") format('truetype');*/
/*}*/
@font-face{
font-family: 'Inter';
src: url("/static/fonts/inter/Inter-Regular.ttf") format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face{
font-family: 'Inter';
src: url("/static/fonts/inter/Inter-Medium.ttf") format('truetype') ;
font-weight: 500;
font-style: normal;
}
@font-face{
font-family: 'Inter';
src: url("/static/fonts/inter/Inter-SemiBold.ttf") format('truetype') ;
font-weight: 600;
font-style: normal;
}
@font-face{
font-family: 'Inter';
src: url("/static/fonts/inter/Inter-Bold.ttf") format('truetype') ;
font-weight: 700;
font-style: normal;
}
/* Links */
a, a:link, a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
/* Common */
aside, nav, footer, header, section, main {
display: block;
}
h1, h2, h3, h4, h5, h6, p {
font-size: inherit;
font-weight: inherit;
}
ul, ul li {
list-style: none;
}
img {
vertical-align: top;
}
img, svg {
max-width: 100%;
height: auto;
}
address {
font-style: normal;
}
/* Form */
input, textarea, button, select {
font-family: inherit;
font-size: inherit;
color: inherit;
}
input::-ms-clear {
display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number]{
-moz-appearance: textfield;
}
button, input[type="submit"] {
display: inline-block;
box-shadow: none;
background-color: transparent;
background: none;
cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
outline: none;
}
button::-moz-focus-inner {
padding: 0;
border: 0;
}
label {
cursor: pointer;
margin-bottom: 7px;
font-family: 'Inter';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
}
legend {
display: block;
}
html, body{
height: 100%;
}
/*Стилизация radio button */
.form_radio_btn {
width: 375px;
border-radius: 14px;
background: #FFF;
display: flex;
height: 70px;
align-items: center;
margin-bottom: 40px;
}
.form_radio_btn input[type=radio] {
display: none;
}
.form_radio_btn label {
text-decoration: none;
color: black;
/* Body text 1 */
font-family: 'Inter';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
border-radius: 10px;
display: flex;
width: 169px;
height: 44px;
padding: 8px 16px;
justify-content: center;
align-items: center;
gap: 8px;
flex-shrink: 0;
margin: 0px 3px;
}
/* Checked */
.form_radio_btn input[type=radio]:checked + label {
background: #FF613A;
color: white;
}
/* Hover */
.form_radio_btn label:hover {
color: #666;
}
/* Disabled */
.form_radio_btn input[type=radio]:disabled + label {
background: #efefef;
color: #666;
}
/*_________________________________________________________*/
body {
margin: 0;
padding: 0;
background: #F8F8F8;
}
header {
max-width: 1280px;
margin: auto;
padding: 40px 40px 60px 40px;
/* margin-bottom: 60px; */
/* padding: 0px 40px; */
}
footer {
height: 318px;
background: #272424;
margin-top: 50px;
}
section.register>h1 {
color: #272424;
text-align: center;
font-family: 'Inter';
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: 52px;
padding-bottom: 35px;
}
.first-column>div:nth-child(2)>div:last-child>input {
width: 276px;
padding: 19px 0 19px 10px;
border-radius: 10px;
border: 1px solid black;
}
.first-column>div:nth-child(2)>div:last-child {
display: flex;
}
.first-column>div:nth-child(2)>div:last-child>input::placeholder {
color: rgba(39, 36, 36, 0.60);
font-family: 'Inter';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
}
.first-column>div:nth-child(2)>div:first-child {
color: #FFF;
/* Body text 3 */
font-family: 'Inter';
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
margin-bottom: 10px;
}
.first-column>div:first-child{
margin-bottom: 40px;
}
footer>div {
max-width: 1280px;
margin: auto;
padding: 40px;
height: 73%;
}
.left-column {
width: 50%;
float: left;
}
.right-column {
width: 48%;
float: right;
}
.first-column{
float: left;
width: 50%;
}
.second-column {
float: right;
width: 29%;
}
.third-column {
width: 33%;
float: left;
margin-top: 11%;
}
.four-column{
display: inline-block;
}
.fifth-column {
float: right;
width: 33%;
}
.social_media_footer {
margin-top: 19px;
}
.second-footer>div {
max-width: 1280px;
margin: auto;
height: 60px;
width: 100%;
padding-top: 20px;
}
.second-footer>div>div:last-child {
width: 62%;
float: right;
}
.second-footer {
padding: 0;
height: 60px;
max-width: unset;
background: #F8F8F8;
}
.sf_first-column{
width: 27%;
float: left;
}
.sf_second-column{
display: inline-block;
}
.sf_third-column{
width: 33%;
float: right;
}
.second-column>div:first-child {
color: #FFF;
/* Heading 4 */
font-family: 'Inter';
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 28px;
margin-bottom: 40px;
}
.four-column>div:first-child {
color: #FFF;
/* Heading 4 */
font-family: 'Inter';
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 28px;
margin-bottom: 40px;
}
.third-column>div>a{
color: white;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
}
.four-column>div:last-child {
color: #FFF;
/* Body text 2 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
margin-bottom: 8px;
}
.four-column>div>div>a{
color: #FFF;
/* Body text 2 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
margin-bottom: 8px;
}
.second-column>div:last-child>div>div {
margin-bottom: 8px;
}
.second-column>div:last-child>div>div>a {
color: #FFF;
/* Body text 2 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
text-decoration: none;
}
.fifth-column>a {
display: block;
border-radius: 10px;
background: #FF613A;
padding: 10px 20px;
color: #FFF;
/* Body text 1 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
text-decoration: none;
text-align: center;
}
.fifth-column>a:first-child {
margin-bottom: 10px;
}
.first-column>div:nth-child(2)>div:last-child>div {
display: flex;
width: 60px;
height: 60px;
justify-content: center;
align-items: center;
gap: 4px;
flex-shrink: 0;
border-radius: 10px;
background: #FF613A;
margin-left: -30px;
}
header .header-first {
float: left;
margin-top: 5px;
}
.header-first>div{
margin-right: 40px;
display: inline-block;
vertical-align: middle;
}
/*.header_menu{*/
/* display: none;*/
/* max-height: 200px;*/
/* width: 100%;*/
/* position: absolute;*/
/* background-color: #F8F8F8;*/
/* overflow: scroll;*/
/* overflow-x:hidden;*/
/*}*/
.dropbtn {
color: white;
font-size: 16px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: white;
border-radius: 10px;
width: 250px;
height: 382px;
box-shadow: -1px 4px 10px 0px rgba(198, 199, 203, 0.20), 0px -1px 10px 0px rgba(198, 199, 203, 0.20);
z-index: 1;
}
.dropdown-content.show{
display:block;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #ddd;}
/*.dropdown:hover .dropdown-content {display: block;}*/
/*.dropdown:hover .dropbtn {background-color: #3e8e41;}*/
header>div>a {
color: #F8F8F8;
/* Body text 1 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
width: 152px;
border-radius: 10px;
background: #FF613A;
text-align: center;
padding-top: 10px;
padding-bottom: 4px;
min-height: 29px;
display: inline-block;
vertical-align: middle;
}
.enter_button{
width: 90px;
margin-left: 15px;
}
header>div>a>span{
vertical-align: middle;
}
header>div>div>a {
text-decoration: none;
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
}
header .header-second {
float: right;
align-items: center;
justify-content: space-between;
}
.header-second>div {
display: inline-block;
vertical-align: middle;
}
.header-second-item>a{
margin-right: 30px;
}
.header-second>div>img{
margin-right: 5px;
}
#customer_service{
margin-right: 35px;
}
header>div:last-child>div:nth-child(2)>.svg {
margin-right: 5px;
}
.second-footer>div>div:last-child>div>a {
color: #272424;
/* Body text 2 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
text-decoration: none;
}
.second-footer>div>div:first-child {
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
width: 30%;
float: left;
}
.first-column>div:nth-child(2)>div:last-child>input:focus-visible {
outline: unset;
}
section.register {
max-width: 1400px;
margin: auto;
}
section.register>form {
display: flex;
flex-direction: column;
align-items: center;
margin: auto;
width: clamp(400px, 50%, 600px);
margin-bottom: 120px;
}
.inputs {
display: flex;
justify-content: space-between;
width: 100%;
margin-bottom: 20px;
}
.inputs>div>input {
border-radius: 10px;
border: 1px solid #FF613A;
width: 100%;
height: 60px;
padding-left: 10px;
}
.inputs>div {
flex-basis: 50%;
}
.inputs>div:first-child {
margin-right: 30px;
width: clamp(300px, 300px, 90%);
}
.inputs>div>input::placeholder {
color: rgba(39, 36, 36, 0.60);
/* Body text 1 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
}
.agree {
display: flex;
margin-bottom: 40px;
align-items: end;
}
.agree>div:first-child {
width: 50px;
}
.agree>div:last-child {
color: rgba(39, 36, 36, 0.60);
/* Body text 3 */
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
}
.button_register>button {
display: block;
/* Body text 3 */
height: 60px;
width: 97%;
background: #FF613A;
color: #FFF;
/* Heading 5 */
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 600;
text-decoration: none;
line-height: 26px;
border-radius: 10px;
text-align: center;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
}
.button_register {
width: 100%;
}
.switch {
width: 375px;
border-radius: 14px;
background: #FFF;
display: flex;
height: 70px;
margin-bottom: 40px;
}
input.active {
text-decoration: none;
color: #FFF;
/* Body text 1 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
border-radius: 10px;
background: #FF613A;
display: flex;
width: 169px;
height: 44px;
padding: 8px 16px;
justify-content: center;
align-items: center;
gap: 8px;
flex-shrink: 0;
margin: 0px 3px;
}
input.deactive {
text-decoration: none;
display: flex;
width: 100%;
height: 44px;
padding: 8px 16px;
justify-content: center;
align-items: center;
gap: 8px;
flex-shrink: 0;
color: rgba(39, 36, 36, 0.60);
/* Body text 1 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
}
.custom-checkbox {
position: absolute;
z-index: -1;
opacity: 0;
}
.custom-checkbox+label {
display: block;
user-select: none;
position: relative;
}
.custom-checkbox+label > span {
display: block;
user-select: none;
float: right;
text-align: left;
width: 86%;
padding-top: 2%;
font-weight: 400;
}
.custom-checkbox+label::before {
content: '';
display: inline-block;
width: 2em;
height: 2em;
flex-shrink: 0;
flex-grow: 0;
border: 1px solid #E6E6E6;
border-radius: 10px;
margin-right: 0.5em;
background-repeat: no-repeat;
background-position: center center;
background-size: 50% 50%;
background-color: white;
}
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
}
.custom-checkbox:not(:disabled):active+label::before {
background-color: #FF613A;
border-color: #b3d7ff;
}
.custom-checkbox:hover+label::before {
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
}
.custom-checkbox:checked+label::before {
background-color:#FF613A;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
}
.custom-checkbox:disabled+label::before:hover {
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
}
#img_msg_by_email{
margin-top: 7px;
display: inline-block;
position: relative;
left: 31%;
}
.title_for_msg_by_email{
display: none;
z-index: 100;
color: #272424;
font-family: Inter;
font-size: 10px;
font-style: normal;
font-weight: 400;
line-height: 16px;
border-radius: 10px;
background: #FFF;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
position: absolute;
bottom: -10%;
left: 40%;
height: fit-content;
width: 250px;
padding: 10px;
}
#img_msg_by_email:hover + .title_for_msg_by_email{
display: inline-block;
}
section.login {
max-width: 1400px;
margin: auto;
margin-bottom: 120px;
}
section.login>h1 {
color: #272424;
text-align: center;
/* Heading 1 */
font-family: Inter;
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: 52px;
margin-bottom: 40px;
}
section.login>form {
width: 420px;
margin: auto;
text-align: center;
}
.inputs_l {
width: clamp(300px, 400px, 400px);
height: 60px;
margin-bottom: 20px;
}
.inputs_l>input {
border-radius: 10px;
border: 1px solid #FF613A;
width: 98%;
height: 60px;
padding-left: 10px;
}
section.login>form>div>div:nth-child(4) {
color: rgba(39, 36, 36, 0.60);
text-align: center;
/* Body text 3 */
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
margin-top: 20px;
}
section.login>form>div>div:nth-child(5) {
color: #272424;
text-align: center;
/* Heading 5 */
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 26px;
margin: 20px 0px;
}
.google {
display: flex;
height: 44px;
padding: 8px 16px;
justify-content: center;
align-items: center;
gap: 8px;
flex-shrink: 0;
border-radius: 10px;
background: #FFF;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
margin-bottom: 20px;
}
section.login>form>div>div:nth-child(7) {
color: rgba(39, 36, 36, 0.60);
/* Body text 1 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
}
section.login>form>div>div:nth-child(7)>a {
text-decoration: none;
color: rgba(39, 36, 36, 0.60);
}
section.profile {
max-width: 1280px;
margin: auto;
padding: 0px 40px;
margin-bottom: 120px;
}
h2.title_new_route{
font-family: Inter;
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: 52px;
text-align: center;
width: 550px;
margin-left: 200px;
}
.menu_profile {
width: 31%;
/*margin-right: 40px;*/
float: left;
}
.menu_profile>div {
border-radius: 10px;
background:#FFF;
/* Shadow 1 */
box-shadow: -1px 4px 10px 0px rgba(198, 199, 203, 0.20), 0px -1px 10px 0px rgba(198, 199, 203, 0.20);
margin-bottom: 10px;
padding: 10px;
text-align: center;
position: relative;
height: 44px;
}
.menu_profile>div>a {
color: rgba(39, 36, 36, 0.60);
/* Body text 1 */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
text-decoration: none;
text-decoration: none;
width: 100%;
position: absolute;
top: 22px;
left: 0px;
}
#customer>a,
#mover>a {
left: 3%
}
.menu_profile>div>img.svg {
position: absolute;
left: 10px;
top: 22px;
}
.selected{
background: #FF613A !important;
transition: background 200ms cubic-bezier(1, -0.16, 0, 1.14)
}
.selected>a{
color:white !important;
}
.selected>img.svg{
filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(79deg) brightness(103%) contrast(102%);
}
.info_profile{
width: calc(69% - 40px);
float: right;
}
.info_profile>h1 {
color: #272424;
font-family: Inter;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 36px;
}
.info_profile>h1>span:first-child {
color: #FF613A;
text-decoration: underline;
}
.info_profile>h1>span:last-child {
color: #27242499;
font-size: 20px;
}
.profile_prof {
display: flex;
width: 300px;
}
.info_profile>.advice_text {
color: rgba(39, 36, 36, 0.60);
/* Body text 3 */
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
width: 350px;
margin-top: 10px;
margin-bottom: 40px;
}
.info_profile>div:nth-child(4) {
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
margin-bottom: 40px;
font-weight: 400;
line-height: 22px;
}
.info_profile>div:nth-child(5) {
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
margin-bottom: 40px;
}
.info_profile>div:nth-child(6) {
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
}
.info_profile>div:nth-child(4)>a {
color: #FF613A;
}
.info_profile>div:nth-child(5)>a {
color: #FF613A;
}
.info_profile>div:nth-child(6)>a {
color: #FF613A;
}
.profile_prof>img {
margin-right: 20px;
}
.profile_prof>div>div:first-child {
color: #272424;
/* Heading 5 */
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 26px;
}
select {
display: block;
height: 60px;
border-radius: 15px;
border: 1px solid #E6E6E6;
padding: 10px;
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
appearance: none;
background: white url("/static/img/png/icon-arrow.svg") no-repeat calc(100% - 15px) center;
margin-top: 10px;
}
.checkbox_cargo_type>span{
width: 100%;
}
.errorlist{
position: absolute;
}
.errorlist>li{
color:red;
margin-left: 12px;
}
span.errorlist{
color: red;
}
.receive_msg_by_email{
display: inline-block;
position: absolute;
bottom: 27%;
}
/*create new route*/
select#id_type_transport{
display: block;
height: 60px;
width: 394px;
border-radius: 15px;
border: 2px solid #E6E6E6;
padding: 10px;
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
appearance: none;
margin-top: 10px;
}
select#id_type_transport>option{
font-size: 16px;
font-family: Inter;
}
select#id_type_transport:after{
content: "";
display: block;
width: 25px;
height: 25px;
/*background-image: url("/put_k_strelke");*/
position: absolute;
right: 5px;
top: 5px;
}
.type_transport_list{
width: 394px;
height: 154px;
border: 2px solid #E6E6E6;
padding: 10px;
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
appearance: none;
box-sizing: border-box;
border-radius: 10px;
}
.type_transport_list>label{
float: left;
width: 100%;
}
hr {
border: none; /* Убираем границу */
background-color: #E6E6E6; /* Цвет линии */
color: #E6E6E6; /* Цвет линии для IE6-7 */
height: 2px; /* Толщина линии */
}
form.new_route>div{
margin-bottom: 30px;
margin-top: 30px;
/*display: block ruby;*/
}
form.new_route>div.range-slider{
margin-bottom: 30px;
margin-top: 30px;
display: block;
}
form.new_route{
width:100%;
}
.departure_arrival>div:first-child,
.from_to_place>div:first-child,
.from_to_country>div:first-child,
.phone>div:first-child
{
width: 50%;
float: left;
margin-bottom: 20px;
}
.departure_arrival>div:nth-child(2),
.from_to_place>div:last-child,
.from_to_country>div:last-child,
.phone>div:nth-child(2)
{
width: 50%;
float: right;
margin-bottom: 20px;
}
.from_address_point_txt{
display: block;
border: 1px solid #E6E6E6;
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
appearance: none;
height: 60px;
padding-left: 10px;
z-index: 1;
}
.from_address_point_txt.post_route{
border-radius: 15px;
margin-top: 10px;
width: 392px;
}
.to_address_point_txt{
display: block;
border: 1px solid #E6E6E6;
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
appearance: none;
width: 392px;
height: 60px;
margin-top: 10px;
padding-left: 10px;
}
.to_address_point_txt.post_route{
border-radius: 15px;
width: 392px;
margin-top: 10px;
}
div.departure_arrival>div>input{
display: block;
border-radius: 15px;
border: 1px solid #E6E6E6;
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
appearance: none;
width: 392px;
height: 60px;
padding-left: 10px;
padding-right: 10px;
margin-top: 10px;
}
/*end create new route*/
/*Range slider*/
/*Range slider end*/
/*autocomplete-wrapper START*/
.form-group {
margin-bottom: 20px;
}
.control-label {
display: block;
}
.autocomplete-wrapper {
position: relative;
}
.autocomplete-results {
position: absolute;
background: white;
z-index: 1;
top: 100%;
left: 0;
font-size: 13px;
border: solid 1px #ddd;
border-top-width: 0;
border-bottom-color: #ccc;
box-shadow:
0 5px 10px rgba(0, 0, 0, 0.2);
}
.autocomplete-result {
padding: 12px 15px;
border-bottom: solid 1px #eee;
cursor: pointer;
}
.autocomplete-result:last-child {
border-bottom-width: 0;
}
.autocomplete-location {
opacity: .8;
font-size: smaller;
}
.autocomplete-results[data-highlight='#{$i}'] > :nth-child(#{$iPlus}) {
color: white;
background: #26C9FF;
border-bottom-color: #26C9FF;
outline: solid 1px #26C9FF;
}
/*autocomplete-wrapper END*/
.input_list{
display: none;
max-height: 200px;
width: 100%;
position: absolute;
background-color: #F8F8F8;
overflow: scroll;
overflow-x:hidden;
}
.input_list.post_route{
padding-top: 20px;
max-width: 390px;
}
.input_list.show{
display:inline-block;
}
.input_list .hide{
display: none;
}
div.from_to_place>div>select{
width: 392px;
}
/*Input for cargo-weight*/
.js-input {
display: block;
height: 60px;
width: 394px;
border-radius: 15px;
border: 2px solid #E6E6E6;
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
appearance: none;
margin-top: 20px;
padding-left: 10px;
}
input#id_phone,
input#id_extra_phone
{
display: block;
height: 60px;
width: 394px;
border-radius: 15px;
border: 2px solid #E6E6E6;
color: #272424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
appearance: none;
margin-top: 10px;
padding-left: 10px;
}
.checkbox_cargo_type{
display: flex;
flex-wrap: wrap;
}
.width{
width: 90%;
}
.checkbox_cargo_type.width{
display: flex;
flex-wrap: wrap;
}
.checkbox_cargo_type>div{
min-width: 300px;
margin-bottom: 20px;
}
/*.checkbox_cargo_type>div:nth-child(1){*/
/* flex-shrink: 1;*/
/*}*/
/*.checkbox_cargo_type>div:nth-child(2){*/
/* flex-shrink: 1;*/
/*}*/
/*.checkbox_cargo_type>div:nth-child(3){*/
/* flex-shrink: 1;*/
/*}*/
/*.checkbox_cargo_type>div:nth-child(4){*/
/* flex-shrink: 1;*/
/*}*/
/*.checkbox_cargo_type>div:nth-child(5){*/
/* flex-shrink: 1;*/
/*}*/
/*input#id_cargo_type{*/
/* width: 50%;*/
/*}*/
.errorlist.hide {
display: none;
}
/*my routes*/
.my_route{
width: 100%;
height: 296px;
background-color: White;
border-radius: 10px;
margin: 2% 0 0 0;
box-shadow: 0px -1px 10px 0px #C6C7CB33;
}
.route_info{
vertical-align: top;
border-style: inset;
border-width: 1px;
border-color: transparent #F8F8F8 transparent transparent;
width: 59%;
height: 280px;
display: inline-block;
}
.route_info_about{
margin-bottom: 30px;
}
.route_info_point {
width: 96%;
height: 60px;
border-radius: 10px;
background: #F8F8F8;
margin: 10px;
}
.route_info_point > div > span{
float: right;
font-family: Inter, serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
width: 50%;
text-align: left;
}
.route_info_point > div > div{
float: left;
width: 50%;
text-align: right;
font-family: Inter, serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
}
.route_info_point > div{
width: 100%;
height: 20px;
top: 30%;
position: relative;
padding-left: 17px;
}
.route_info_point > div > div > div{
border: 1px solid #FF613A;
width: 20px;
display: inline-block;
margin-right: 5px;
margin-bottom: 4px;
}
.route_info_about>span:first-child{
background: url("/static/img/png/Tag.png") left center no-repeat;
margin: 0 20px 0 20px;
padding-left: 15px;
}
.route_info_about>span:nth-child(2){
background: url("/static/img/png/Scales.png") left center no-repeat;
padding-left: 20px;
}
.route_info_about>span:last-child{
background: url("/static/img/png/Airplane.png") left center no-repeat;
float: right;
margin-right: 20px;
padding-left: 15px;
}
.route_contact{
width: 40%;
display: inline-block;
}
button#edit_route {
display: block;
height: 44px;
width: 98%;
background: #FF613A;
color: #FFF;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
text-decoration: none;
line-height: 26px;
border-radius: 10px;
text-align: center;
margin-bottom: 5px;
}
.button_remove_route {
display: inline-block;
}
button#remove_route {
height: 44px;
width: 285px;
}
button.confirm_remove{
width: 49% !important;
border: 1px solid #ff0000a8;
border-radius: 10px;
color: #ff0000a8;
font-style: normal;
font-weight: 600;
margin-right: 3px;
/*padding: 5px 0px 5px 0px;*/
font-size: 16px;
}
button.cancel_remove{
width: 48%;
border: 1px solid #808080cc;
border-radius: 10px;
color: #808080cc;
font-style: normal;
font-weight: 600;
/*padding: 5px 0px 5px 0px;*/
font-size: 16px;
}
/*Static_pages*/
h2#title_static{
text-align: center;
font-family: Inter;
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: 52px;
margin-bottom: 20px;
}
.title_static_wrapper{
text-align: center;
}
.title_static_wrapper>h2#title_static{
display: inline-block;
}
span#sub_title_static{
display: block;
text-align: center;
margin-bottom: 40px;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px;
}
button#more_button{
display: inline-block;
height: 60px;
width: 20%;
background: #FF613A;
color: #FFF;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 600;
text-decoration: none;
line-height: 26px;
border-radius: 10px;
text-align: center;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
margin: 0 auto;
}
.top_block_static{
position: relative;
width: 80%;
height: 194px;
margin: auto;
padding: 0px 40px;
}
.top_block_static img{
position: absolute;
}
.top_block_static img:nth-child(4) {
/* Положение нижнего левого изображения */
left: 129px;
bottom: -26px;
}
.top_block_static img:nth-child(5) {
/* Положение верхнего левого изображения */
top: 4px;
left: 1%;
}
.top_block_static img:nth-child(6) {
/* Положение нижнего правого изображения */
bottom: -33px;
right: 126px;
top: 58px;
}
.top_block_static img:nth-child(7) {
top: 0; /* Положение верхнего правого изображения */
right: 0;
}
.mid_block_static{
padding: 40px 40px 0px 40px;
width: 80%;
margin: auto;
}
.mid_block_static>.text_wrapper>span{
display: block;
width: 50%;
padding-bottom: 20px;
}
.benefit_img{
display: flex;
height: fit-content;
align-items: flex-start;
gap: 74px;
justify-content: space-around;
margin-bottom: 20px
}
.benefit_img>img{
align-self: center;
}
.benefit_title{
display: flex;
height: fit-content;
align-items: flex-start;
gap: 133px;
justify-content: space-around;
margin-bottom: 20px;
}
.benefit_title_item>h3{
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 36px;
text-align: center;
}
.benefit_img>figure{
display: flex;
width: 197px;
padding-top: 20px;
flex-direction: column;
justify-content: flex-end;
align-items: center;
gap: 20px;
}
.benefit_img>figure>img{
width: 197px;
height: 105px;
border-radius: 10px;
background: #FFF;
/* Shadow 1 */
box-shadow: -1px 4px 10px 0px rgba(198, 199, 203, 0.20), 0px -1px 10px 0px rgba(198, 199, 203, 0.20);
padding-top: 20px;
padding-bottom: 20px;
}
.benefit_img>figure>figcaption{
text-align: center;
}
.bottom_block_static{
padding: 40px 40px 0px 40px;
position: relative;
width: 80%;
margin: auto;
}
.bottom_block_static img{
position: absolute;
}
#sub_title_static>p{
/*перенос строки в верстке из переноса в html*/
white-space: pre;
}
.bottom_block_static>form>.inputs_l{
margin: auto;
padding: 0px 10px 10px 10px;
width: 30%;
}
.bottom_block_static>form>.button_register{
margin: auto;
padding: 10px;
width: 30%;
}
.bottom_block_static img:nth-child(4) {
/* Положение нижнего левого изображения */
left: -5%;
bottom: 0%;
}
.bottom_block_static img:nth-child(5) {
/* Положение верхнего левого изображения */
top: 13%;
left: 3%;
transform: scale(-1, 1);
}
.bottom_block_static img:nth-child(6) {
/* Положение нижнего правого изображения */
right: -5%;
bottom: 0%;
transform: scale(1, -1);
}
.bottom_block_static img:nth-child(7) {
/* Положение верхнего правого изображения */
top: 18%;
right: 1%;
}
.button_container{
text-align: center;
}
#how_it_work_b{
border-radius: 10px;
background: #E6E6E6;
width: 20%;
height: 60px;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 26px;
color: rgba(39, 36, 36, 0.60);
}
.benefit_img_item{
width: 20%;
}
.benefit_title_item>span{
text-align: center;
margin-bottom: 10px;
width: 340px;
display: block;
}
.map_wrapper{
position: absolute;
right: 8%;
top: 57%;
z-index: -1;
}
.text_wrapper{
float: left;
}
.feedback_form{
margin-top: 60px;
padding: 0px 40px 0px 40px;
}
.feedback_form>form{
width: 60%;
margin: 0 auto;
}
.left_inputs_form{
float: left;
width: 45%;
}
.right_inputs_form{
float: right;
width: 50%;
}
.counter-box{
position: relative;
display: inline-block;
}
.counter-box>textarea{
border-radius: 10px;
border: 1px solid #FF613A;
width: 405px;
height: 130px;
min-width: 65px;
padding: 10px 0px 0px 10px;
}
.counter-box>textarea:focus{
outline: none !important;
}
.counter-text{
position: absolute;
right: 10px;
top: 10px;
color: #7E7E7E;
}
.button_feedback_form{
text-align: center;
}
button#send_feedback_form{
border-radius: 10px;
background: #FF613A;
height: 60px;
color: #FFF;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 26px;
width: 100%;
margin-top: 13px;
}
.subscribes_container{
width: 80%;
margin: auto;
padding-top: 5%;
}
.color_title{
color: #FF613A;
text-align: center;
font-family: Inter;
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: 52px;
margin-bottom: 20px;
}
/*end_static_pages*/
/*Switcher*/
.checkbox-green {
display: block;
height: 28px;
line-height: 28px;
vertical-align: middle;
font-size: 14px;
user-select: none;
margin: auto;
text-align: center;
}
.checkbox-green .checkbox-green-switch {
display: inline-block;
height: 28px;
width: 90px;
box-sizing: border-box;
position: relative;
border-radius: 2px;
background: #848484;
transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
}
.checkbox-green .checkbox-green-switch:before {
content: attr(data-label-on);
display: inline-block;
box-sizing: border-box;
width: 45px;
padding: 0 12px;
position: absolute;
top: 0;
left: 45px;
text-transform: uppercase;
text-align: center;
color: rgba(255, 255, 255, 0.5);
font-size: 10px;
line-height: 28px;
}
.checkbox-green .checkbox-green-switch:after {
content: attr(data-label-off);
display: inline-block;
box-sizing: border-box;
width: 44px;
border-radius: 1px;
position: absolute;
top: 1px;
left: 1px;
z-index: 5;
text-transform: uppercase;
text-align: center;
background: white;
line-height: 26px;
font-size: 10px;
color: #777;
transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
}
.checkbox-green input[type="checkbox"] {
display: block;
width: 0;
height: 0;
position: absolute;
z-index: -1;
opacity: 0;
}
.checkbox-green input[type="checkbox"]:checked + .checkbox-green-switch {
background-color: #70c767;
}
.checkbox-green input[type="checkbox"]:checked + .checkbox-green-switch:before {
content: attr(data-label-off);
left: 0;
}
.checkbox-green input[type="checkbox"]:checked + .checkbox-green-switch:after {
content: attr(data-label-on);
color: #4fb743;
transform: translate3d(44px, 0, 0);
}
/* Hover */
.checkbox-green input[type="checkbox"]:not(:disabled) + .checkbox-green-switch:hover {
cursor: pointer;
}
.checkbox-green input[type="checkbox"]:not(:disabled) + .checkbox-green-switch:hover:after {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}
/* Disabled */
.checkbox-green input[type=checkbox]:disabled + .checkbox-green-switch {
opacity: 0.6;
filter: grayscale(50%);
}
/*END Switcher*/
/*Confidential_ policy*/
.wrapper_name_art {
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: 52px;
text-align: center;
margin-bottom: 40px;
}
.wrapper_text_art{
width: 1280px;
margin: auto;
}
.wrapper_text_art>p{
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
}
/*END_Confidential_ policy*/