.view[name='devices'] {
    position: absolute;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(16px);
}
.view[name='devices'] > .header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 12px 16px;
}
.view[name='devices'] > .header > .side:first-child > div {
    text-transform: uppercase;
    font-weight: 500;
}
.view[name='devices'] > .header > .side:last-child > .button {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    padding: 2px;
}
.view[name='devices'] > .header > .side:last-child > .button > img {
    width: 12px;
    display: block;
}
.view[name='devices'] > .content {
    position: absolute;
    top: 45px;
    right: 0;
    bottom: 0;
    left: 0;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    overflow-y: auto;
}
.view[name='devices'] > .content > .tabs {
    width: 150px;
    overflow-x: auto;
    white-space: nowrap;
    color: #ffffff;
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
}
.view[name='devices'] > .content > .tabs > .tab {
    width: 75px;
    height: 20px;
    display: inline-block;
    cursor: pointer;
    font-weight: 400;
    font-size: 11px;
    text-align: center;
    line-height: 20px;
}
.view[name='devices'] > .content > .tabs > .active {
    background-color: #1e1f23;
    border-radius: 4px;
}
.view[name='devices'] > .content > .button {
    display: none;
    background-color: #363639;
    border-radius: 16px;
    padding: 4px;
    margin-bottom: 16px;
    height: 24px;
}
.view[name='devices'] > .content.virtual > .button {
    display: block;
}
.view[name='devices'] > .content > .button > div {
    color: #f2ecec;
    font-weight: 400;
    font-size: 11px;
    float: left;
    margin-left: 5px;
}
.view[name='devices'] > .content > .button > img {
    width: 6px;
    height: 12px;
    margin-top: 2px;
    float: right;
    margin-right: 5px;
}
.view[name='devices'] > .content > .search {
    display: none;
    position: relative;
    background-color: #363639;
    border-radius: 16px;
    padding: 1px;
    margin-bottom: 16px;
    height: 24px;
}
.view[name='devices'] > .content.real > .search {
    display: block;
}
.view[name='devices'] > .content > .search > img {
    position: absolute;
    top: 5.5px;
    left: 5.5px;
    width: 13px;
    height: 13px;
}
.view[name='devices'] > .content > .search > input {
    color: #ffffff;
    font-weight: 400;
    font-size: 11px;
    margin-left: 27px;
    background-color: #363639;
    border: 0;
}
.view[name='devices'] > .content > .search > input::placeholder {
    color: #f2ecec;
}
.view[name='devices'] > .content > .device {
    position: relative;
    width: 100%;
    height: 100%;
}
.view[name='devices'] > .content > .device > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 125%;
    height: 125%;
    border: none;
    border-radius: 16px;
    transform-origin: top left;
    transform: scale(0.8);
}
.view[name='devices'] > .content > .device > img {
    width: 100%;
}

@media (max-width: 799px) {
    .view[name='devices'] {
        top: 0;
        left: 0;
    }
}
@media (min-width: 800px) {
    .view[name='devices'] {
        top: 16px;
        width: 360px;
        border-radius: 16px;
        margin: 24px 8px 8px;
    }
}