#xl_installation {
    width: 700px;
    margin: 0 auto;
}

#xl_installation .img-top {
    width: 14%;
}

#xl_installation .xl-top img {
    margin-bottom: 20px;
}

#xl_installation .xl-top h1 {
    line-height: 30px;
}

#xl_installation section {
    text-align: center;
    margin: 50px 0;
    clear: both;
}

#xl_installation .xl-top p {
    font-size: 17px;
    color: #777777;
    margin-top: 0.5em;
}

#xl_installation .xl_screenshot {
    display: flex;
}

#xl_installation img {
    width: 100%;
}

#xl_installation .xli_cont {
    display: inline-block;
    position: relative;
    padding: 5px;
    width: 315px;
    border: 5px solid #ffffff;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

#xl_installation .xli_cont .xli_addon_image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#xl_installation .xli_cont:hover .xl_hover {
    background-image: url('../img/zoom.svg');
    opacity: 1;
    transition: all 0.3s;
}

#xl_installation .xli_cont .xl_hover {
    position: absolute;
    opacity: 0;
    height: 100%;
    width: 100%;
    top: -2px;
    left: -5px;
    border: 5px solid #ffffff;
    background-color: rgba(68, 68, 68, 0.15);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
    transition: all 0.3s;
}

#xl_installation ul {
    display: inline-block;
    margin: 0 0 0 30px;
    list-style-type: none;
    max-width: calc(100% - 350px);
    text-align: left;
}

#xl_installation ul li {
    background-image: url('../img/arrow-right.svg');
    margin: 16px 0;
    padding: 0 0 0 24px;
    font-size: 15px;
    background-position: left 3px;
    background-repeat: no-repeat;
    background-size: 14px;
    color: #777777;
}

#xl_installation .xli_step {
    background-color: #F9F9F9;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E5E5;
    margin: 0 0 25px 0;
}

#xl_installation .xl_step-install {
    display: flex;
    text-align: left;
}

#xl_installation .xli_step .xli_count {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 50px;
    text-align: center;
    text-align: -webkit-center;
    margin: auto;
}

#xl_installation .xli_step img {
    width: 60%;
}

#xl_installation .xli_step div {
    display: inline-block;
    width: calc(87% - 104px);
    background-color: #ffffff;
    padding: 30px;
    border-left: 1px solid #eeeeee;
}

#xl_installation .xli_step .button {
    font-weight: 500;
    box-shadow: none;
    padding: 12px;
    min-width: 200px;
    height: auto;
    line-height: 13px;
    text-align: center;
    font-size: 15px;
    transition: all .3s;
}

#xl_installation .xli_step .button :hover {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}

#xl_installation .xl_step-install h1 {
    line-height: 26px;
}

#xl_setup_link {
    pointer-events: none;
}

#xl_installation .xli_activated {
    display: none;
}

#xl_installation #xli_setup {
    opacity: 0.5;
}

.xli_loader {
    opacity: 0;
    width: 60px;
    height: 60px;
    margin-left: -60px;
    position: absolute;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

#xl_installation #xli_product_image {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}


/* The Modal (background) */
#xl_installation .xli_screenshot {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content (image) */
#xl_installation .xli_model_content {
    margin: auto;
    display: block;
    width: 50%;
}

#xl_installation .xli-zoom-in {
    animation: zoom-in-animation 0.5s ease-in-out;
    transform-origin: center;
}

@keyframes zoom-in-animation {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

/* Add Animation */
#xl_installation .modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

/* The Close Button */
#xl_installation .xli_close_btn {
    position: absolute;
    top: 46px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    font-size: 35px;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    z-index: 99999999;

}

#xl_installation .xli_close_btn:hover,
#xl_installation .xli_close_btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.xl_installation_alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
}

.xl_installation_alert_success {
    padding: 20px;
    background-color: #0b5c08;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
}

