@media only screen and (min-width: 901px) {
    .bottomsheet {
        display: none;
    }
}

.bottomsheet-button--island {
    display: block;
    background: var(--white-color);
    border-radius: 12px;
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 8, 29, 0.12);
            box-shadow: 0px 4px 20px 0px rgba(0, 8, 29, 0.12);
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 12;
    padding: 16px;
    cursor: pointer;
}

.bottomsheet__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#sheet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 400;
    visibility: visible;
    -webkit-transition: opacity .5s, visibility .5s;
    -o-transition: opacity .5s, visibility .5s;
    transition: opacity .5s, visibility .5s;
}

#sheet[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
  
#sheet .bottomsheet__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--secondary-text-color);
    opacity: .5;
}

#sheet .bottomsheet__container {
    max-width: 70rem;
    width: 100%;
    max-height: 100vh;
    height: 30vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: var(--white-color);
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow-y: hidden;
    --default-transitions: transform .5s, border-radius .5s;
    -webkit-transition: var(--default-transitions);
    -o-transition: var(--default-transitions);
    transition: var(--default-transitions);
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    padding: 16px;
    padding-top: 36px;
}

#sheet .bottomsheet__container:not(.not-selectable) {
    -webkit-transition: var(--default-transitions), height .5s;
    -o-transition: var(--default-transitions), height .5s;
    transition: var(--default-transitions), height .5s;
}
  
#sheet .bottomsheet__container.fullscreen {
    border-radius: 0;
}
  
#sheet[aria-hidden="true"] .bottomsheet__container {
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
}
  
#sheet .draggable-area {
    width: 66px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 0;
    margin: auto;
    cursor: -webkit-grab;
    cursor: grab;
}
  
#sheet .draggable-thumb {
    width: inherit;
    height: 4px;
    background: rgba(55, 59, 60, .40);
    border-radius: 50px;
}

/*#sheet .bottomsheet-button--close {}*/

#sheet .bottomsheet__content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow-y: auto;
}

#sheet .bottomsheet__content::-webkit-scrollbar {
    width: 6px;
    background: var(--white-color);
}

#sheet .bottomsheet__content::-webkit-scrollbar-thumb {
    background-color: var(--additionl-blue-color);
    border-radius: 12px;
}

#sheet .bottomsheet__content #content-widget > ul {
    max-height: unset;
    margin-top: 0;
    padding-left: 0!important;
}

#sheet .bottomsheet__content #content-widget ul li a  {
    font-weight: var(--semibold-font-weight);
    color: var(--primary-cyan-color);
}