555
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.
 
 
 
 

194 lines
3.5 KiB

.form-sunE-input {
margin: 20px 0 0;
}
.form-sunE-input input {
height: 44px;
width: 100%;
line-height: 44px;
font-size: 16px;
box-sizing: border-box;
padding-left: 60px;
border-radius: 22px;
outline: none;
border: 2px solid #fff;
box-shadow: 0 1px 8px 0 rgba(21, 27, 38, 0.15);
}
.form-sunE-input .ico_input {
position: absolute;
top: 7px;
left: 15px;
z-index: 1;
}
.width-22 {
width: 22px;
}
.form-sunE-input .ico_phone {
left: 18px;
}
.form-sunE-input .ico_top_3 {
top: 3px;
}
.form-sunE-input.ico_left_custom input {
padding-left: 60px;
}
.checkbox-gr input {
margin: -3px 5px 0 0;
width: 16px;
height: 16px;
border: 1px solid #00b9b7;
font-size: 16px;
}
.err input {
border-color: #e22028;
}
.select-hidden {
display: none;
visibility: hidden;
padding-right: 10px;
}
.select {
cursor: pointer;
display: inline-block;
position: relative;
font-size: 16px;
color: #fff;
width: 100%;
height: 48px;
line-height: 48px;
border-radius: 24px;
border: none;
background-image: linear-gradient(to right, #00e1a0, #00b9b7);
}
.select-styled {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to right, #00e1a0, #00b9b7);
width: 100%;
height: 48px;
line-height: 48px;
border: none;
/* transition: all 0.2s ease-in; */
border-radius: 24px;
color: #fff;
font-size: 16px;
text-align: center;
font-family: "Myriadpro-Bold";
z-index: 10;
display: flex;
}
.select-styled:after {
content: "";
width: 32px;
height: 32px;
background: url("./../images/icon/ico_dropdown_border_white.png") 98% / 32px
no-repeat transparent;
position: absolute;
top: 8px;
right: 10px;
}
.select-styled.active:after {
border-color: transparent transparent #fff transparent;
}
.select-options {
display: none;
position: absolute;
padding: 24px 40px 0;
top: 24px;
right: 0;
left: 0;
z-index: 9;
margin: 0;
list-style: none;
background-color: #fff;
border-radius: 24px;
border-top-right-radius: 0;
border-top-left-radius: 0;
border: none;
box-shadow: 0 1px 15px 0 rgba(21, 27, 38, 0.15);
max-height: calc(100vh - 100px);
overflow: auto;
}
.select-options li {
margin: 0;
text-indent: 15px;
transition: all 0.15s ease-in;
border-bottom: 1px solid #000;
text-align: center;
display: flex;
}
.select-options li:last-child {
border-bottom: none;
}
.select-options li[rel="hide"] {
display: none;
}
.select-options.left li {
text-align: left;
}
.select .image-selected {
margin-right: 1rem;
}
.select .image-option {
width: 30px;
height: 30px;
border-radius: 100%;
align-self: center;
display: flex;
border: 1px solid var(--primary-green);
}
.select .image-option.image-option-logo {
border: 1px solid var(--light-yellow);
}
.select .image-option img {
width: 26px;
height: 18px;
object-fit: contain;
margin: auto;
}
@media screen and (max-height: 700px) {
.select {
font-size: 13px;
height: 32px;
line-height: 32px;
border-radius: 16px;
}
.select-styled {
height: 32px;
line-height: 32px;
border-radius: 16px;
font-size: 14px;
}
.select-styled:after {
content: "";
width: 26px;
height: 26px;
top: 4px;
right: 5px;
background: url(./../images/icon/ico_dropdown_border_white.png) 96% / 26px
no-repeat transparent;
}
.select-options {
padding: 32px 32px 0;
top: 0;
border-radius: 18px;
max-height: calc(100vh - 90px);
}
}