/*
*************************************************
Copyright (C) 2020 Earworks.                    *
Codeigniter Project Template Modification       *
Please contact our email for more information : *
contact@earworks.co.id                          *
*************************************************
*/
/* 
    Created on : Mar 14, 2021, 12:32:33 PM
    Author     : Andy
*/
@font-face {
    font-family: 'Museo';
    src: url('../fonts/museo/MuseoSans-300.otf') format('opentype');
    font-weight:300;
    font-style:normal;
}
@font-face {
    font-family: 'MuseoItalic';
    src: url('../fonts/museo/MuseoSans-100Italic.otf') format('opentype');
    font-weight:100;
    font-style: italic, oblique;
}
@font-face {
    font-family: 'MuseoBold';
    src: url('../fonts/museo/MuseoSans_700.otf') format('opentype');
    font-weight:700;
    font-style:normal;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    text-decoration:none;
}
html {
    font-family: 'Museo', sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    /*font-size: 16px;*/
    -webkit-tap-highlight-color: transparent;
}
body {
    /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
    /*font-size: 14px;*/
    line-height: 1.42857;
    color: #333;
    display:block;
    margin:0;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    position: relative;
}
.wrapper {
    width: 100%;
    max-width: 1100px;
    padding: 0px 24px;
}
.separator {
    display:block;
    width:100%;
    padding: 15px;
}
.title {
    display:inline-block;
    border-left-color: #4a4f51;
    border-right-color: #4a4f51;
    border-left-width:10px;
    border-right-width:0px;
    border-right-style: solid;
    border-left-style: solid;
    text-align: left;
    font-size: 2.5rem;
    text-transform: uppercase;
    padding-left: 15px;
    padding-right:15px;
    height:50px;
}
.title.title-right{
    border-left-width:0px;
    border-right-width:10px;
    text-align: right;
}
.title.title-center{
    border-left-width:0px;
    border-right-width:0px;
    text-align: center;
}
.title.white {
    border-left-color: #fff;
    border-right-color: #fff;
}
@media screen and (max-width: 768px){
    .title.title-right{
        border-left-width:10px;
        border-right-width:0px;
        text-align: left;
    }
}
@media screen and (max-width: 768px){
    .title {
        font-size:1.9rem;
    }
}
.white {
    color: white;
}
.row {
    display: grid;
    width: 100%;
    align-items: center;
    gap: 15px;
}
.row.col-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.row.col-2 {
    grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px){
    .row.col-3 {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 480px){
    .row.col-3, .row.col-2 {
        grid-template-columns: 1fr;
    }
}
/* image card */
.image-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}
.image-border {
    width:100%;
    height: 230px;
    /*border-radius: 20px;*/
    overflow: hidden;
    margin-bottom: 15px;
}
.image-border img {
    width:100%;
    height:100%;
    -o-object-fit : cover;
    object-fit: cover;
}
.image-title {
    font-size: 1.3rem;
    height: 58px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    margin-bottom: 15px;
    color: #4a4f51;
    font-weight: bold;
}
.image-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
/* end image card */
/* navbar section */
.navbar {
    width: 100%;
    position: sticky;
    top:0;
    left: 0;
    right:0;
    height: 85px;
    margin-top: -85px;
    z-index: 998;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.navbar > .wrapper {
    display:flex;
    justify-content: space-between;
    align-items: center;
    height:100%;
}
.navbar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width:100px;
}
.navbar .logo > img {
    height: 60%;
    width: auto;
}
.navbar .logo > #logo2 {
    display:none;
}
.navbar .nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: flex-end;
    padding:0;
    margin:0;
    height:100%;
    padding-top:25px;
}
.navbar .nav-menu li {
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar .nav-menu a:not(.nav-btn) {
    display:flex;
    justify-content: center;
    align-items: center;
    height:100%;
    padding: 0 1rem;
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 3px solid transparent;
    font-size:1rem;
}
.navbar .nav-menu a:not(.nav-btn):hover,
.navbar .nav-menu a:not(.nav-btn):active,
.navbar .nav-menu a:not(.nav-btn):focus,
.navbar .nav-menu a:not(.nav-btn).active {
    border-bottom: 3px solid white;
}
.navbar .nav-menu a.nav-btn {
    display:flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 3px solid transparent;
    font-size:0.9rem;
    background-color: white;
    color: #4a4f51;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    padding: 8px 10px;
    font-family: MuseoBold;
    /*margin-top: -8px;*/
    margin-left: 15px;
    line-height:1em;
    border: 3px solid white;
}
.navbar .nav-menu a.nav-btn:hover,
.navbar .nav-menu a.nav-btn:active,
.navbar .nav-menu a.nav-btn:focus,
.navbar .nav-menu a:not(.nav-btn).active {
    background-color: transparent;
    color: white;
}
.navbar .nav-menu a.with-icon {
    padding-left: 50px;
    background-position: 10px center;
    background-size: 30px auto;
    background-repeat: no-repeat;
}
.navbar .nav-open {
    display:none;
}

.navbar.nav-scrolled {
    background-color:white;
    box-shadow: 1px 1px 5px #ccc;
    /*height: 75px;*/
}
.navbar .logo > #logo1 {
    transform: translateY(100px) translateX(100px);
    height: 120px;
}
@media screen and (max-width: 768px){
    .navbar .logo > #logo1 {
        transform: translateY(0px) translateX(0px);
        height: 60px;
    }
}
.navbar.nav-scrolled .logo > #logo1 {
    display:none;
}
.navbar.nav-scrolled .logo > #logo2 {
    display:block;
}
.navbar.nav-scrolled .nav-menu a:not(.nav-btn) {
    color: #4a4f51;
}
.navbar.nav-scrolled .nav-menu a:not(.nav-btn):hover,
.navbar.nav-scrolled .nav-menu a:not(.nav-btn):active,
.navbar.nav-scrolled .nav-menu a:not(.nav-btn):focus,
.navbar.nav-scrolled .nav-menu a:not(.nav-btn).active {
    border-bottom: 3px solid #4a4f51;
}
.navbar.nav-scrolled .nav-menu a.nav-btn {
    background-color: #4a4f51;
    color: white;
    border: 3px solid #4a4f51;
}
.navbar.nav-scrolled .nav-menu a.nav-btn:hover,
.navbar.nav-scrolled .nav-menu a.nav-btn:active,
.navbar.nav-scrolled .nav-menu a.nav-btn:focus,
.navbar.nav-scrolled .nav-menu a:not(.nav-btn).active {
    background-color: transparent;
    color: #4a4f51;
}
.navbar .nav-open a {
    font-size: 1.5rem !important;
}
@media screen and ( max-width: 768px ){
    .navbar .nav-menu{display:none;}
    .navbar .nav-open{display:block;}
}
/* end navbar section */
/* navbar mobile section */
.navbar-mobile {
    position: fixed;
    z-index: -1;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top:0;
    left:0;
    right: 0;
    bottom:0;
    background-color: #4a4f51;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.navbar-mobile.open {
    z-index: 999;
    opacity: 1;
}
.navbar-mobile > .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height:100%;

}
.navbar-mobile .nav-header {
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width:100%;
}
.navbar-mobile .nav-close {
    display:flex;
    justify-content:center;
    align-items: center;
    padding: 0 1rem;
    color: white;
    font-size: 1.5rem;
}
.navbar-mobile .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    flex-direction: column;
    margin:0;
    padding: 0;
    width:100%;
}
.navbar-mobile li {
    height: 60px;
    width:100%;
}
.navbar-mobile li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; 
    border-top: 1.5px solid transparent;
    border-bottom: 1.5px solid transparent;
}
.navbar-mobile li a:hover,
.navbar-mobile li a:active,
.navbar-mobile li a:focus,
.navbar-mobile li a.active{
    border-top: 1.5px solid white;
    border-bottom: 1.5px solid white;
}
.navbar-mobile .nav-menu a.nav-btn {
    display:flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 3px solid transparent;
    font-size:1.1rem;
    background-color: white;
    color: #4a4f51;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    padding: 10px 15px;
    font-family: MuseoBold;
    margin-top: 20;
    line-height:1em;
    border: 3px solid white;
}
.navbar-mobile .nav-menu a.with-icon {
    /*padding-left: 50px;*/
    background-position: 10px center;
    background-size: 30px auto;
    background-repeat: no-repeat;
}
/* end navbar mobile section */
/* hero section */
.hero {
    z-index:1;
    height:100vh;
    width:100%;
}
.hero:before {
    content: "";
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
    z-index:2;
}
.hero-bg{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height: 100%;
    overflow: hidden;
}
.hero-bg > video {
    width:100%;
    height:100%;
    background-color: #4a4f5120;
    -o-object-fit: cover;
    object-fit: cover;
}
.hero-content {
    z-index: 3;
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items:  flex-end;
    height:100%;
    width:100%;
}

.hero-link {
    display: inline-block;
    text-align: right;
    padding-right: 120px;
    margin-bottom: 15px;
    max-width: 40vw;
    background-position: right center;
    background-size: 100px auto;
    background-repeat: no-repeat;
    overflow: hidden;
    line-height: 1.8em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px){
    .hero-link {
        max-width: 100%;
        align-items: flex-start;  
        text-align: left;
        padding-right: 0px;
        padding-left: 120px;
        background-position: left center;
    }
    .hero-content {
        align-items: flex-start !important;
    }
}

.hero-link:hover {
    margin-right: 5px;
}
.hero-link .hero-link-text1,
.hero-link .hero-link-text2 {
    display: block;
    width:100%;
}
.hero-link .hero-link-text1 {
    font-size: 1.3rem;
}
.hero-link .hero-link-text2 {
    font-size: 1.8rem;
    font-family: MuseoBold;
}
@media screen and (max-width: 480px){
    .hero-link .hero-link-text1 {
        font-size: 0.9rem;
    }
    .hero-link .hero-link-text2 {
        font-size: 1.1rem;
        line-height: 1.5rem;
    }
}
/* end hero section */
/* greetings section */
.greetings {
    min-height: 100vh;
    position: relative;
    width:100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.greetings:before {
    content: "";
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
    z-index:2;
    width:100%;
    height: 100%;
}
.greetings-bg {
    z-index: -1;
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    bottom:0;
    -o-object-fit: cover;
    object-fit: cover;
    background-color: #ccc;
    width:100%;
    height: 100%;
    display:none;
}
.greetings > .wrapper {
    z-index: 3;
    color: white;
}
.greetings-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 220px;
}
.greetings-header > img{ 
    height: 100%;
    width: auto;
    margin-right: 50px;
}
@media screen and (max-width: 480px){
    .greetings-header {
        height: 160px;
        justify-content: center;
    }
    .greetings-header > img{ 
        margin-right:0px;
    }
    .greetings .title {
        display:none;
    }
}
/* end greetings sections */
/* highlight sections */
.highlight {
    background-color: white;
}
/* end highlight section */
/* quotes section */
.quotes {
    min-height: 70vh;
    position: relative;
    width:100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.quotes:before {
    content: "";
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
    z-index:2;
    width:100%;
    height: 100%;
}
.quotes-bg {
    z-index: -1;
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    bottom:0;
    -o-object-fit: cover;
    object-fit: cover;
    background-color: #ccc;
    width:100%;
    height: 100%;
    display:none;
}
.quotes > .wrapper {
    z-index: 3;
    color: white;
    font-size:2.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 80px;
}
.quotes > .wrapper p{
    margin:0;
    line-height:1.5rem;
}
/* end quotes sections */
/* gallery section */
.gallery {
    background-color: white;
}
.gallery > .wrapper {
    max-width: 950px;
}
.swiper-container {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.gallery-top {
    height: 380px;
    width: 100%;
    margin-bottom:15px;
}

.gallery-thumbs {
    height: 120px;
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
/* end gallery section */
/* footer section */
footer {
    background-color: #4a4f51;
    color: white;
    padding-bottom:50px;
}
.copyright {
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    display:flex;
    justify-content: center;
    align-items:center;
    height:50px;
    background-color:#00000050;
}
/* end footer section */
/* Modal Form */
.modal-form .modal-content {
    background: transparent;
    box-shadow: none;
    border:none;
}

/* End Modal Form */

/* Mini Form */
.mini-form {
    width:100%;
    padding: 35px 45px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3), inset 0px 0px 0px 1px white;
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3), inset 0px 0px 0px 1px white;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3), inset 0px 0px 0px 1px white;
    -webkit-border-radius: px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #d3efff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d3efff));
    background: -webkit-linear-gradient(top, #ffffff 0%,#d3efff 100%);
    background: -o-linear-gradient(top, #ffffff 0%,#d3efff 100%);
    background: -ms-linear-gradient(top, #ffffff 0%,#d3efff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d3efff',GradientType=0 );
    background: linear-gradient(to bottom, #ffffff 0%,#d3efff 100%);
    overflow: hidden;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin: 50px auto;
}
.mini-form .modal-header {
    border-bottom: none;
}
.mini-form .form-title {
    display:block;
    margin: 20px 0px;
    text-align: center;
    text-transform: capitalize;
}
.mini-form .form-control {
    height: 40px;
    border: none;
    padding: 5px 7px 5px 15px;
    background: #fff;
    color: #666;
    border: 2px solid #E0D68F;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
.mini-form .form-control:focus,
.mini-form .form-control:focus + .fa {
    border-color: #10CE88;
    color: #10CE88;
}
.mini-form .btn-submit {
    background: #0AC986;
    font-size: 16px;
    padding: 12px;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
/* End Mini Form */

/*.global-form .modal-content {
    padding: 15px;
    border: 5px solid #ccc;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3), inset 0px 0px 0px 1px white;
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3), inset 0px 0px 0px 1px white;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3), inset 0px 0px 0px 1px white;
    -webkit-border-radius: px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #d3efff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d3efff));
    background: -webkit-linear-gradient(top, #ffffff 0%,#d3efff 100%);
    background: -o-linear-gradient(top, #ffffff 0%,#d3efff 100%);
    background: -ms-linear-gradient(top, #ffffff 0%,#d3efff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d3efff',GradientType=0 );
    background: linear-gradient(to bottom, #ffffff 0%,#d3efff 100%);
    overflow: hidden;
}
.global-form .btn-modal {
    text-decoration: none;
    font-size: 14px/18px;
    color: white;
    cursor: pointer;
    background-color: #0064cd;
    background-repeat: repeat-x;
    background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
    background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
    background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
    background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
    background-image: -o-linear-gradient(top, #049cdb, #0064cd);
    background-image: linear-gradient(to bottom, #049cdb, #0064cd);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
    border: 1px solid #ccc;
    border-top-color: rgb(204, 204, 204);
    border-right-color: rgb(204, 204, 204);
    border-bottom-color: rgb(204, 204, 204);
    border-left-color: rgb(204, 204, 204);
    border-color: #0064cd #0064cd #003f81;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.global-form .modal-header {
    border-bottom:none;
}
.global-form .modal-footer {
    border-top: none;
}
.global-form .close {
    color: black;
    opacity:1;
}
.global-form .form-control {
    border: 1px solid #ccc;
    background: #d3efff;
    background: -moz-linear-gradient(top, #d3efff 0%, #ffffff 55%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d3efff), color-stop(55%,#ffffff));
    background: -webkit-linear-gradient(top, #d3efff 0%,#ffffff 55%);
    background: -o-linear-gradient(top, #d3efff 0%,#ffffff 55%);
    background: -ms-linear-gradient(top, #d3efff 0%,#ffffff 55%);
    background: linear-gradient(top, #d3efff 0%,#ffffff 55%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d3efff', endColorstr='#ffffff',GradientType=0 );
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.global-form .form-control::placeholder {  Chrome, Firefox, Opera, Safari 10.1+ 
    color: black;
    opacity: 1;  Firefox 
}

.global-form .form-control:-ms-input-placeholder {  Internet Explorer 10-11 
    color: black;
}

.global-form .form-control::-ms-input-placeholder {  Microsoft Edge 
    color: black;
}*/

/* note */
.message-wrapper {
    position: fixed;
    top: 110px;
    right: 2vw;
    min-width: 20vw;
    max-width:50vw;
    z-index: 9000;
    display: inline-block;
}
.message-wrapper > .message {
    max-width: 100%;
    display: block;
    border-radius: 5px;
    padding-left: 5px;
    margin-bottom:15px;
    position:relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(130%);
    -moz-transform: translateX(130%);
    -o-transform: translateX(130%);
    -ms-transform: translateX(130%);
    transform: translateX(130%);
}
.message-wrapper > .message.open {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}
.message-wrapper > .message > .close-message {
    position:absolute;
    top:5px;
    right:5px;
    background-color: transparent;
    border: none;
}
.message-wrapper > .message ul,
.message-wrapper > .message p {
    margin: 0px;
    padding: 0px;
    padding:15px 25px;
    color: white;
}
.message-wrapper a {
    color:#bdd6ec;
    text-decoration: underline;
}
.message.message-danger {
    background-color:#a40303;
}
.message.message-success {
    /*color:white;*/
    background-color:#03a40d;
}
.message.message-info {
    /*color:white;*/
    background-color:#03a49c;
}
.message.message-warning {
    /*color:white;*/
    background-color:#b79c04;
}
.message ul,
.message p {
    background-color: rgba(255,255,255,0.35);
}
/* end note */
.modal {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    opacity:0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index:-1;
}
.modal.open {
    z-index: 1000;
    opacity:1;
}
.modal-overlay {
    background-color: #00000050;
    position: absolute;
     top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.modal .modal-content {
    width:100%;
    max-width: 350px;
    z-index: 1003;
    top: -80px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.modal.open .modal-content {
    top:0;
}
.form-group {
    margin-bottom: 15px;
}
.text-right {
    text-align: right;
}
.form-title {
    font-size: 24px;
}
.form-control {
    width:100%;
}
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn.btn-block {
    display:block;
    width: 100%;
}
.btn.btn-link {
    color:#337ab7;
    cursor: pointer;
}
/* note */
.message-wrapper {
    position: fixed;
    top: 110px;
    right: 2vw;
    min-width: 20vw;
    max-width:50vw;
    z-index: 9000;
    display: inline-block;
}
.message-wrapper > .message {
    max-width: 100%;
    display: block;
    border-radius: 5px;
    padding-left: 5px;
    margin-bottom:15px;
    position:relative;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(130%);
    -moz-transform: translateX(130%);
    -o-transform: translateX(130%);
    -ms-transform: translateX(130%);
    transform: translateX(130%);
}
.message-wrapper > .message.open {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}
.message-wrapper > .message > .close-message {
    position:absolute;
    top:5px;
    right:5px;
    background-color: transparent;
    border: none;
}
.message-wrapper > .message ul,
.message-wrapper > .message p {
    margin: 0px;
    padding: 0px;
    padding:15px 25px;
    color: white;
}
.message-wrapper a {
    color:#bdd6ec;
    text-decoration: underline;
}
.message.message-danger {
    background-color:#a40303;
}
.message.message-success {
    /*color:white;*/
    background-color:#03a40d;
}
.message.message-info {
    /*color:white;*/
    background-color:#03a49c;
}
.message.message-warning {
    /*color:white;*/
    background-color:#b79c04;
}
.message ul,
.message p {
    background-color: rgba(255,255,255,0.35);
}
/* end note */

.ppt-frame {
    width: 100%;
    height: 450px;
    display:block;
    position:relative;
}
.ppt-frame > iframe{
    width:100%;
    height: 100%;
    z-index:1;
}
.ppt-frame > .mask {
    height: 22px;
    background-color: #444444;
    border-top: 1px solid #555555;
    position:absolute;
    display:inline-block;
    bottom:2px;
    z-index:2;
    width:100px;
    right:2px;
}
.ppt-frame > .mask2 {
    height: 22px;
    background-color: #444444;
    border-top: 1px solid #555555;
    position:absolute;
    display:inline-block;
    bottom:2px;
    z-index:2;
    width:100px;
    left:2px;
}
/*.ppt-frame > .overlay {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    width:100%;
    height:100%;
    z-index:2;
    background-color: transparent;
}*/
.ppt-view {
    height: 22px;
    /*    background-color: #444444;
        border-top: 1px solid #555555;*/
    position: absolute;
    display: inline-block;
    bottom: 2px;
    z-index: 2;
    width: auto;
    right: 15px;
    padding: 0px 5px;
}
.ppt-view:hover {
    background-color: rgba(255,255,255,0.1);
}
.vjs-default-skin .vjs-big-play-button {
    top:50%;
    left:50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform:translateY(-50%) translateX(-50%);
}