
.lahas-dropdown {
    position: absolute;
    z-index: 2147483000;
    max-height: 360px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e8ddd3;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(75, 50, 33, .16);
    box-sizing: border-box;
    font-family: inherit;
    overflow-x: hidden;
}

.lahas-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid #f2ebe5;
    background: #fff;
    color: #3d342e;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: background .18s ease, -webkit-transform .18s ease;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.lahas-item:last-of-type {
    border-bottom: 0;
}

.lahas-item:hover,
.lahas-item.is-active {
    background: #fbf7f3;
}

.lahas-item-icon {
    display: block;
    width: 34px;
    height: 34px;
    min-width: 34px;
    margin-right: 11px;
    color: #8f6d55;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    background: #f5ede6;
}

.lahas-item-text {
    display: block;
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.lahas-item-name {
    display: block;
    font-size: 14px;
    line-height: 1.38;
    font-weight: 700;
    color: #332b25;
}

.lahas-item-sub {
    display: block;
    margin-top: 3px;
    color: #7d7067;
    font-size: 12px;
    line-height: 1.42;
}

.lahas-state {
    padding: 14px 16px;
    color: #7a6e66;
    font-size: 13px;
}

.lahas-loading:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid #ddd;
    border-top-color: #8b6f5a;
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-animation: lahas-spin .75s linear infinite;
    animation: lahas-spin .75s linear infinite;
}

.lahas-credit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 8px 11px;
    color: #9a8f87;
    font-size: 10px;
    background: #fcfaf8;
    border-top: 1px solid #f2ebe5;
}

.lahas-credit span {
    margin-right: 6px;
}

.lahas-credit img {
    display: block;
    width: 58px;
    height: auto;
}

.lahas-style-elegant {
    border-color: #e5d5c8;
    border-radius: 16px;
    box-shadow: 0 20px 55px rgba(79, 54, 39, .18);
}

.lahas-style-elegant .lahas-item {
    padding: 13px 16px;
}

.lahas-style-elegant .lahas-item:hover,
.lahas-style-elegant .lahas-item.is-active {
    background: #f9f3ed;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    box-shadow: inset 3px 0 0 #d8a575;
}

.lahas-style-elegant .lahas-item:after {
    content: '›';
    display: block;
    margin-left: 12px;
    color: #c0a08a;
    font-size: 22px;
    line-height: 1;
}

.lahas-style-elegant .lahas-item-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    line-height: 38px;
    color: #9a6f49;
    background: linear-gradient(#fbf4ee, #f1e2d5);
    box-shadow: inset 0 0 0 1px rgba(154, 111, 73, .10);
}

.lahas-style-elegant .lahas-item-name {
    font-size: 14px;
    font-weight: 700;
}

.lahas-style-elegant .lahas-item-sub {
    margin-top: 4px;
    font-size: 12px;
}

.lahas-style-modern .lahas-item:hover,
.lahas-style-modern .lahas-item.is-active {
    background: #f7f3ef;
}

.lahas-style-compact .lahas-item {
    padding: 8px 11px;
}

.lahas-style-compact .lahas-item-icon {
    display: none;
}

.lahas-style-compact .lahas-item-name {
    font-size: 13px;
}

.lahas-style-compact .lahas-item-sub {
    margin-top: 1px;
    font-size: 11px;
}

.lahas-style-simple {
    border-radius: 10px;
}

.lahas-style-simple .lahas-item {
    display: block;
    padding: 10px 12px;
}

.lahas-style-simple .lahas-item-icon,
.lahas-style-simple .lahas-item-sub,
.lahas-style-simple .lahas-item:after {
    display: none;
}

.lahas-style-simple .lahas-item-name {
    font-weight: 500;
}

@-webkit-keyframes lahas-spin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes lahas-spin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .lahas-dropdown {
        max-height: 300px;
        border-radius: 12px;
    }

    .lahas-item,
    .lahas-style-elegant .lahas-item {
        padding: 12px 13px;
    }

    .lahas-item-icon,
    .lahas-style-elegant .lahas-item-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        line-height: 34px;
        font-size: 17px;
    }

    .lahas-item-name {
        font-size: 14px;
    }

    .lahas-item-sub {
        font-size: 12px;
    }
}

.lahas-error {
    color: #8a3f35;
    background: #fff8f6;
    border-left: 3px solid #c98f7f;
}
