.ahura-demo-toolbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999999999999999999999999999;
    width: 100%;
    color: #fff;
    background-color: #1c2225;
    border-bottom: 1px solid #3c3c3c;
    box-shadow: 0 10px 25px #00000014;
}

.ah-demo-toolbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    height: 72px;
}

.ah-toolbar-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.demo-devices {
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-devices .device-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
}

.demo-devices .device-icon {
    height: 30px;
    cursor: pointer;
}

.demo-devices .device-icon.res-active svg {
    stroke: #FFC107;
}

.ah-toolbar-buttons .ah-buy-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #4CAF50;
    color: #fff;
    padding: 11px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 9px #4caf5054;
}

.ah-toolbar-buttons .ah-buy-product-btn svg {
    stroke: #fff;
    width: 25px;
    height: 25px;
}

.ah-toolbar-open-demos {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 20px;
    background-color: #111518;
    padding: 2px 15px;
    height: 100%;
    border-radius: 7px;
    cursor: pointer;
}

.ah-toolbar-open-demos svg {
    width: 30px;
    stroke: #fff;
}

.ah-toolbar-open-demos.is-opened svg {
    transform: rotateX(190deg);
}

.ah-toolbar-other-demos {
    position: absolute;
    top: 100%;
    width: 100%;
    padding: 15px;
    background-color: #333;
    box-shadow: 0 0 20px #0000008c;
    max-height: 365px;
    overflow: auto;
}

.ah-toolbar-other-demos .ah-toolbar-site-item {
    display: inline-block;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 13px;
    font-size: 15px;
    border-radius: 5px;
    transition: ease .15s;
}

.ah-toolbar-other-demos .ah-toolbar-site-item:hover,
.ah-toolbar-other-demos .ah-toolbar-site-item.is-current {
    background-color: #fff;
    color: #333;
}

.ah-other-demos {
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    gap: 10px;
}

html {
    transition: ease .3s;
    margin-right: auto;
    margin-left: auto;
    display: none;
}

html.no-iframe {
    margin: 0 !important;
    padding: 72px 0 0 0 !important;
}

iframe#site-preview {
    margin: 0 auto 0 auto;
}

.ah-iframe-loader {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #1c2225;
    z-index: 99999999999999999999999999;
}

.iframe-loader-content {
    font-size: 20px;
    color: #fff;
}

html.no-iframe,
html.no-iframe > body {
    background: #333 !important;
}

@media screen and (max-width: 1360px) {
    .demo-devices {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .ah-other-demos {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
}

@media screen and (max-width: 767px) {
    .ah-toolbar-open-demos > span,
    .ah-toolbar-buttons .ah-buy-product-btn > span{
        display: none;
    }

    .ah-other-demos {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}