#iframe{
	display: block;
    margin: 0 auto;
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

/** DEMO CSS */
#demo-switcher{
    /* overflow: hidden; */
    position: relative;
}

#demo-switcher .container{
    background: #fff;
    box-shadow: 0 2px 26px rgba(0,0,0,0.07);
    width: 100%;
    max-width: 100%;
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
    flex-wrap: wrap;
}

#demo-switcher .container > div {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    /* align-items: center; */
}

#demo-switcher .container > div.left {
    flex: 2;
    padding-right: 2%;
}

#demo-switcher .container .logo-holder {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    align-items: center;
}

#demo-switcher .container > div.right {
    justify-content: flex-end;
    align-items: center;
}

#demo-switcher .logo, 
#demo-switcher .theme-selector {
    margin-right: 5%;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#demo-switcher .logo a {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

#demo-switcher .logo img {
    max-width: 100%;
    vertical-align: top;
}

#demo-switcher .theme-selector {
    background: url(https://blossomthemes.com/wp-content/themes/checkout/demo_code/choose-item.png) no-repeat center right;
    padding-right: 115px;
    margin-right: 3%;
}

#demo-switcher .select {
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    width: 270px;
}

#demo-switcher .select::after {
    top: 0;
    font-size: 20px;
    border-left: 1px solid rgba(0,0,0,0.2);
    height: 40px;
    text-align: center;
    right: 0;
    width: 30px;
    line-height: 40px;
}

#demo-switcher .theme-selector select {
    height: 40px;
    line-height: 1;
    font-size: 14px;
    min-height: auto;
    border: none;
    background: none;
    position: relative;
    padding-right: 35px;
}

.theme-switcher {
    background: url(https://blossomthemes.com/wp-content/themes/checkout/demo_code/bg-theme-switcher.png) no-repeat 35px 50%;
    padding: 5px 35px 5px 180px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-left: 1px solid rgba(0,0,0,0.08);
    border-right: 1px solid rgba(0,0,0,0.08);
}

.theme-switcher a {
    display: inline-block;
    color: rgba(0,0,0,0.2);
    font-size: 25px;
    margin-right: 15px;
    vertical-align: middle;
    opacity: 1;
    filter: alpha(opacity=100);
}

.theme-switcher a:last-child {
    margin-right: 0;
}

.theme-switcher a.demo-rotate {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.theme-switcher a:hover, 
.theme-switcher a.active {
    color: #4C5357;
}

.download {
    background: url(https://blossomthemes.com/wp-content/themes/checkout/demo_code/bg-download.png) no-repeat center left;
    padding: 5px 0 5px 110px;
    margin-right: 3%;
}

.download a, 
.view-pro a {
    display: inline-block;
    background: #f8478d;
    border: 1px solid #f8478d;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    padding: 8px 16px;
    border-radius: 3px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.view-pro a {
    background: #66DADC;
    border-color: #66DADC;
    width: 139px;
}

.view-pro a:hover {
    background: none;
    border: 1px solid #66DADC;
    color: #66DADC;
}

.download a:hover {
    background: none;
    border: 1px solid #f8478d;
    color: #f8478d;
}

#demo-switcher .close-btn-holder {
    position: absolute;
    top: 14px;
    right: 15px;
    z-index: 999;
    width: 30px;
    height: 30px;
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

#demo-switcher.closed .close-btn-holder {
    top: 0;
    background: #f8478d;
    height: 30px;
}

#demo-switcher .btn-close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    height: 100%;
    line-height: normal;
    background: none;
    color: #333;
    font-size: 17px;
    border-radius: 0;
    position: relative;
}

#demo-switcher .btn-close::before, 
#demo-switcher .btn-close::after {
    content: "";
    background: #777;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

#demo-switcher .btn-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#demo-switcher .btn-close:hover::before, 
#demo-switcher .btn-close:hover::after {
    background: #f8478d;
}
#demo-switcher.closed .close-btn-holder .btn-close::before,
#demo-switcher.closed .close-btn-holder .btn-close::after{
    background: #ffffff;
}

#demo-switcher.closed .close-btn-holder .btn-close::before {
    width: 12px;
    left: -7px;
}

#demo-switcher.closed .close-btn-holder .btn-close::after {
    width: 12px;
    right: -7px;
}

#demo-switcher .btn-close > .fa {
    display: none;
}

.far-closed {
    height: 100vh;
}

@media screen and (max-width: 1460px) {
    #demo-switcher .container > div.left {
        padding-right: 1%;
    }

    #demo-switcher .logo {
        margin-right: 2%;
    }

    #demo-switcher .theme-selector {
        margin-right: 1%;
    }

    .theme-switcher {
        padding-right: 10px;
        padding-left: 150px;
        background-position-x: 10px;
    }

    #demo-switcher .close-btn-holder {
        right: 0;
    }

    #demo-switcher.closed .close-btn-holder {
        right: 15px;
    }
}

@media screen and (max-width: 1330px) {
    #demo-switcher .select, 
    .view-pro a {
        width: auto;
    }
}

@media screen and (max-width: 1199px) {
    #demo-switcher .container > div.left {
        flex: 1;
    }

    #demo-switcher .container > div.right {
        justify-content: flex-start;
        flex: initial;
    }

    #demo-switcher .logo, 
    #demo-switcher .theme-selector {
        margin-right: 0;
        padding-right: 15px;
    }

    #demo-switcher .theme-selector {
        background: none;
    }

    .theme-switcher {
        background: none;
        padding-left: 20px;
        padding-right: 0;
        border-right: none;
    }

    #demo-switcher .right .btn-close {
        width: 35px;
    }

    .download {
        background: none;
        padding-left: 0;
        margin-right: 0%;
        padding-right: 10px;
    }
}

@media screen and (max-width: 767px) {
    #demo-switcher .container {
        display: block;
        padding-top: 10px;
    }

    #demo-switcher:not(.closed) .container {
        display: block;
    }

    #demo-switcher .container > div {
        justify-content: center;
    }

    #demo-switcher .container > div.left {
        flex-direction: row;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

    #demo-switcher .container > div.right {
        padding-right: 0;
        justify-content: center;
    }

    #demo-switcher .logo, 
    #demo-switcher .theme-selector {
        margin-right: 10px;
        margin-bottom: 0;
    }

    #demo-switcher .theme-selector {
        background: none;
        padding-right: 0;
    }

    .theme-switcher {
        background: none;
        padding-left: 0;
        padding-right: 0;
        border: none;
    }

    .download {
        background: none;
        padding-left: 0;
    }
}