body {
    padding: 0;
    margin: 0;
}

.live-edit-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.live-edit-wrapper .notification-wrapper
{
    position: fixed;
    left: 20px;
    bottom: 10px;
    z-index: 100;
}
.live-edit-wrapper .notification-wrapper .notice-item
{
    padding: 20px 10px;
    margin: 10px 0;
    border-radius: 5px;
    width: 350px;
    animation-name: show_notification;
    animation-duration: 1s;
}
@keyframes show_notification
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
.live-edit-wrapper .notification-wrapper .notice-item[type=success]
{
    background-color: #65cc70;
    color: white;
}
.live-edit-wrapper .notification-wrapper .notice-item[type=info]
{
    background-color: #658dcc;
    color: white;
}
.live-edit-wrapper .notification-wrapper .notice-item[type=error]
{
    background-color: #cc6565;
    color: white;
}
.live-edit-wrapper .notification-wrapper .notice-item[type=warning]
{
    background-color: #ccb265;
    color: white;
}
.live-edit-wrapper .toolbar {
    height: 70px;
    width: 100%;
    background-color: #2b2f3e;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}
.live-edit-wrapper .toolbar a
{
    text-decoration: none;
    color: #000;
}
.live-edit-wrapper .toolbar .live-edit-btn {
    padding: 8px 10px;
    border-radius: 10px;
    background-color: #fed700;
}

.live-edit-wrapper .toolbar .title-section {
    color: white;
    font-size: 1.5rem;
}

.live-edit-wrapper .content {
    flex: auto;
    position: relative;
}

.live-edit-wrapper .content iframe {
    width: 100%;
    height: 100%;
    position: absolute;
}

.live-edit-wrapper .hide {
    display: none;
}

.live-edit-wrapper .overlay {
    background-color: rgba(3, 3, 3, .5);
    width: 100%;
    height: 100%;
}

.live-edit-wrapper .preloader {
    display: none;
}

.live-edit-wrapper .preload-mode .preloader {
    display: block;
    z-index: 100;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.live-edit-wrapper .preloader img {
    animation-name: logoAnimation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.live-edit-wrapper .preload-mode iframe {
    opacity: .6;
    pointer-events: none;
}

@keyframes logoAnimation {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}