#content {
    padding-top: 0 !important;
}

.demo-container h1 {
    color: var(--primary);
}

.demo-container .primary-color {
    color: var(--primary);
}

.demo-container .or {
}

.demo-container .demo-op {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    margin: 0 auto 10px;
}

.demo-container .demo-qrcode img {
    height: 240px;
}

.demo-container .demo-op .demo-label {
    width: 150px;
    margin: 0;
    line-height: 2.5;
}

.demo-container .demo-right .demo-op {
    display: none;
}

.demo-container .demo-op select {
    display: inline-block;
    width: 100%;
    min-width: 120px;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    background: #fff;
}

.demo-container .demo-op {
    margin: 0;
}


.demo-container .demo-output {
    background-image: url("../images/mobile-frame.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 395px;
    height: 776px;
    position: relative;
    margin: 0 auto;
}

.demo-container .demo-output .demo-iframe {
    width: 366px !important;
    height: 662px !important;
    position: absolute;
    left: 16px;
    top: 58px;
    border: 0;
    border-radius: 11px;
}

.demo-icon-heading {
    background-image: url("../images/check_icon.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    display: inline-block;
}

.demo-icon-hand {
    background-image: url("../images/Interactive_icon.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    display: inline-block;
}

.demo-icon-scan {
    background-image: url("../images/ScanIcon.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    display: inline-block;
}

.demo-icon-link {
    background-image: url("../images/Link_icon.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    display: inline-block;
}

.demo-icon-arrow {
    background-image: url("../images/arrow.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    display: inline-block;
}
.demo-aurl{
  margin: 0px 10px 0 0px;
    width: 44%;
    float: left;

}

.demo-icon-aurl {
    background-image: url("../images/download_icon.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    display: inline-block;
}
#demo-aurl img{
    width:100%;
}
#demo-isourl img{
    width:44%;
}
.demo_url-none{
    display:none;
}

@media screen and (max-width: 768px) {
    
    .demo-url-block{
         display:block!important;
    }
    .demo-container .demo-left {
        display: none;
    }

    .demo-container .demo-op {
        display: block;
        margin: 0 auto;
    }

    .demo-container .demo-op .demo-label, .demo-container .demo-op .demo-select {
        display: block;
        width: 100%;
        max-width: unset;
    }

    .demo-container .demo-output {
        background-size: contain;
        width: 330px;
        height: 630px;
    }

    .demo-container .demo-output .demo-iframe {
        width: 307px !important;
        height: 546px !important;
        left: 12px;
        top: 38px;
    }
}

.entry-header {
    display: none;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--secondary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--secondary);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.demo-button {
    border: none;
    letter-spacing: 0;
    background: #fff;
    color: var(--secondary);
    padding: 5px 12px;
    transition: none;
    border-radius: 4px;
    margin-bottom: 5px;
    display: inline-block;
}

.demo-button.active, .demo-button:hover {
    background: var(--secondary);
    color: #fff !important;
}
