/* include fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600');
/* font-family: 'Open Sans', sans-serif; */
/* include fonts */

header.header-bg-light {
    background: none;
}
/*WAS CHANGED*/
/* sidebar */
/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #fff; /* Black*/
    overflow: hidden; /* Disable horizontal scroll */

    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

/* The navigation menu links */

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    cursor: pointer;
    z-index: 99999;
    top: 22px;
    left: 30px;
}

.fixed-menu-area {
    position: relative;
    height: 80px;
    top: 0px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #9a9a9a;
    z-index: 99999;
}

.content-sidebar-wr {
    overflow-x: hidden !important;
    overflow-y: auto;
    height: calc(100% - 80px);
}

.content-sidebar-wr::-webkit-scrollbar {
    width: 14px;
    height: 18px;
}
.content-sidebar-wr::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    -webkit-border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
.content-sidebar-wr::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
.content-sidebar-wr::-webkit-scrollbar-corner {
    background-color: transparent;
}


@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@-moz-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@-webkit-keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@-moz-keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.about-us-content-wr {
    max-width: 580px;
    min-width: 540px;
    width: 100%;
    margin: 60px auto 50px;

    display: none;
    -webkit-animation: fadeOut 1s;
    animation: fadeOut 1s;
}

.about-us-content-wr.opened {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.contact-us-content-wr {
    max-width: 580px;
    width: 100%;
    margin: 60px auto 50px;
    display: none;

    display: none;
    -webkit-animation: fadeOut 1s;
    animation: fadeOut 1s;
}

.contact-us-content-wr.opened {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.content-success-wr {
    max-width: 580px;
    width: 100%;
    margin: 60px auto 50px;
    display: none;

    display: none;
    -webkit-animation: fadeOut 1s;
    animation: fadeOut 1s;
}

.content-success-wr.opened {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.content-success-wr > img {
    max-width: 230px;
    display: block;
    margin: 40px auto 45px auto;
}

.content-success-wr > p {
    color: #353535;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
}
.top-g-sent {
    margin-top: 90px;
}

.page-desc-c {
    font: 15px 'Open Sans', sans-serif;
    color: #353535;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 35px;
}

.page-title-c {
    font: 25px 'Open Sans', sans-serif;
    color: #f28026;
    font-weight: 600;
    letter-spacing: 0.9px;
    margin-bottom: 16px;
}

.flex-field-wr-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* form.contact-sidebar-us input {
    border: 1px solid #9a9a9a;

    -webkit-border-radius: 6px 6px 6px 6px;
    border-radius: 6px 6px 6px 6px;

    color: #353535;
    font: 13px 'Open Sans', sans-serif;
    height: 45px;
    width: 270px;
    padding: 0px 20px;
    font-weight: 600;
    outline: none;

    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

form.contact-sidebar-us textarea {
    border: 1px solid #9a9a9a;

    -webkit-border-radius: 6px 6px 6px 6px;
    border-radius: 6px 6px 6px 6px;

    color: #353535;
    font: 13px 'Open Sans', sans-serif;
    font-weight: 600;
    height: 200px;
    width: 100%;
    padding: 10px 20px;
    resize: none;
    outline: none;
    margin-top: 5px;

    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
} */


form.contact-sidebar-us input.error {
    border: 2px solid #F44336;

    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

form.contact-sidebar-us textarea.error {
    border: 2px solid #F44336;

    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

form.contact-sidebar-us input::-webkit-input-placeholder, form.contact-sidebar-us textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #9a9a9a;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
}
form.contact-sidebar-us input::-moz-placeholder, form.contact-sidebar-us textarea::-moz-placeholder { /* Firefox 19+ */
    color: #9a9a9a;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
}
form.contact-sidebar-us input:-ms-input-placeholder, form.contact-sidebar-us textarea:-ms-input-placeholder { /* IE 10+ */
    color: #9a9a9a;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
}
form.contact-sidebar-us input:-moz-placeholder, form.contact-sidebar-us textarea:-moz-placeholder { /* Firefox 18- */
    color: #9a9a9a;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
}


/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-right .5s;
    margin-right: 0%;
}

#main.opened {
    margin-right: 65%;
}

#main.opened .flex-bottom{
    padding-right: 40px;
}

#mySidenav.opened {
    width: 0%;
}

#mySidenav.opened {
    width: 65%;
}


/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */

.fixed-menu-area .nav.navbar-nav.navbar-right {
    margin: 20px 55px 0px 0px;
    -webkit-box-shadow: -1px 3px 57px 5px rgba(233, 233, 234, .99);
    box-shadow: -1px 3px 57px 5px rgba(233, 233, 234, .99);
}

.navbar-default .navbar-collapse {
    top: 46px;
    border-radius: 5px;
}

@media screen and (max-width: 1500px) {
    .fixed-menu-area .nav.navbar-nav.navbar-right {
        margin: 20px 72px 0px 0px;
    }
}

.page-title {
    font: 25px 'Open Sans', sans-serif;
    color: #f28026;
    font-weight: 600;
}

.page-desc {
    font: 18px 'Open Sans', sans-serif;
    color: #353535;
    font-weight: 400;
}

.advantage-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
}

.realy-fast {
    width: 135px;
    min-width: 135px;
    height: auto;
}

.adv-info-sec > h3 {
    color: #f28026;
    font: 18px 'Open Sans', sans-serif;
    font-weight: 600;
}

.adv-info-sec > p {
    color: #353535;
    font: 14px 'Open Sans', sans-serif;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.adv-info-sec {
    margin-left: 62px;
}

.meet-team {
    color: #f28026;
    font: 18px 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 60px 0px 40px 0px;
}

.team-members-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.member-item {
    max-width: 250px;
    width: 100%;

    margin: 0px 0px 45px;
}

.m-avatar-wr {
    width: 117px;
    height: 117px;
    overflow: hidden;
    margin: 0 auto;

    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
}

.m-name {
    color: #353535;
    font: 18px 'Open Sans', sans-serif;
    font-weight: 600;
    margin: 15px 0px 5px 0px;
}

.m-pos {
    color: #f28026;
    font: 15px 'Open Sans', sans-serif;
    font-weight: 600;
    margin: 0px 0px 17px 0px;
}

.m-info {
    color: #757373;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 24px;
}

.contact_us {
    color: #f28026;
    font: 18px 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 20px 0px 25px 0px;
}

.contact-icons-wr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 250px;
}

a.soc-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    text-decoration: none;
    width: 120px;
    margin: 0px 0px 20px 0px;
}

.soc-item > span {
    color: #353535;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
    padding-left: 10px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    #main.opened {
        margin-right: 62%;
    }

    #mySidenav.opened {
        width: 60%;
    }

    #main.opened .col-flex-1 {
        margin-right: 0px;
    }

    .about-us-content-wr {
        max-width: 500px;
        min-width: 500px;
    }

    .adv-info-sec {
        margin-left: 40px;
    }

    .member-item {
        max-width: 225px;
    }

    .contact-us-content-wr {
        max-width: 500px;
    }

    form.contact-sidebar-us input {
        width: 240px;
    }
}

@media (max-width: 991px) {
    #main.opened {
        margin-right: 0%;
    }

    #mySidenav.opened {
        width: 90%;
    }
}

@media (max-width: 767px) {

    .navbar-collapse .navbar-nav>li:first-child > a {
        padding-top: 12px;
        padding-bottom: 7px;
    }
    .navbar-collapse .navbar-nav>li:last-child > a {
        padding-top: 7px;
        padding-bottom: 12px;
    }

    .navbar-nav {
        max-width: 380px;
        background-color: #f5f5f5;
        margin: 0 auto;
    }

    #mySidenav.opened {
        width: 100%;
    }

    .about-us-content-wr {
        max-width: 475px;
        min-width: 475px;
    }

    .member-item {
        max-width: 220px;
        margin: 0px 0px 30px;
    }

    .adv-info-sec {
        margin-left: 35px;
    }

    #mySidenav .nav.navbar-nav.navbar-right {
        width: 192px;
        height: 40px;
        float: right;
    }

    #mySidenav .nav.navbar-nav.navbar-right >li {
        display: inline-block;
    }

    #mySidenav #menu1, #mySidenav #menu2 {
        color: #292525;
        font: 13px 'Open Sans', sans-serif;
        font-weight: 600;
    }

    #mySidenav #menu1 {
        border-right: 1px solid #ededed;
        padding: 10px 17px 10px 17px;
    }

    #mySidenav #menu2 {
        padding: 10px 15px 10px 10px;
    }

    .fixed-menu-area .nav.navbar-nav.navbar-right {
        margin: 15px 15px 0px 0px;
    }

    .fixed-menu-area {
        height: 70px;
    }

    .sidenav .closebtn {
        top: 17px;
        left: 15px;
    }

    .contact-us-content-wr {
        max-width: 475px;
        margin: 40px auto 30px;
    }

    form.contact-sidebar-us input {
        width: 230px;
    }

}

@media (max-width: 576px) {
    .about-us-content-wr {
        max-width: 100%;
        min-width: 300px;
        padding: 0px 15px;
        margin: 40px auto 20px;
    }

    .page-desc {
        font: 16px 'Open Sans', sans-serif;
    }

    .page-title {
        font: 22px 'Open Sans', sans-serif;
        font-weight: 600;
    }

    .adv-info-sec {
        margin-left: 0px;
    }

    .advantage-section {
        flex-direction: column;
        max-width: 280px;
        width: 100%;
        margin: 50px auto 0px;
    }

    .team-members-flex {
        flex-direction: column;
        align-items: center;
    }

    .about-us-content-wr.opened {
        text-align: center;
    }

    a.soc-item {
        width: 100px;
    }

    .contact-icons-wr {
        width: 230px;
        margin: 0 auto;
    }

    .fixed-menu-area .nav.navbar-nav.navbar-right {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #ededed;
    }

    .flex-field-wr-c {
        flex-direction: column;
        width: 100%;
    }

    .contact-us-content-wr {
        max-width: 100%;
        padding: 0px 15px;
    }

    form.contact-sidebar-us input {
        width: 100%;
        margin-bottom: 15px;
    }

    form.contact-sidebar-us textarea {
        height: 150px;
        margin-top: 0px;
    }

    .content-success-wr > img {
        max-width: 180px;
    }

    button.btn-send-contact {
        margin: 15px 0px 0px auto;
        width: 100% !important;
    }

    .member-item {
        max-width: 250px;
    }
}

.navbar-brand {
    position: relative;
}

.shadow-place {
    position: absolute;
    left: 20%;
    top: 60%;
    width: 100%;
    height: 0px;
    z-index: -1;
    -webkit-box-shadow: 0px 0px 140px 100px rgba(50, 50, 50, 0.40);
    -moz-box-shadow: 0px 0px 140px 100px rgba(50, 50, 50, 0.40);
    box-shadow: 0px 0px 140px 100px rgba(50, 50, 50, 0.40);
}

/* sidebar */
/*WAS CHANGED*/

.navbar-brand {
    position: relative;
}

.progress-content {
    display: none;
    position: absolute;
    top: 100px;
    width: 100%;
    text-align: center;
    pointer-events: none;
    cursor: default;
	z-index: 1;
}

.txt-percentage {
    color: #9a9a9a;
    font: 45px 'Open Sans', sans-serif;
    font-weight: 600;
    margin: 12px 0px 0px 0px;
}

.txt-speed {
    color: #cecece;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
    margin: 5px 0px 0px 0px;
}

.hideIMG {
    display: none;
}

/* to change */
.general-full {
    position: relative;
    display: block;
    padding: 20px 40px;
    min-height: 100vh;
}

.carousel-fade {
    /* top: 0px; */
    left:0px;
    position: absolute;
    /* min-height: 100vh; */
    width: 100%;
    /* height: 100%; */
    height: 100vh;
}

.carousel-fade>div {
    /* top: 0px; */
    left:0px;
    /* position: fixed; */
    position: absolute;
    /* min-height: 100vh; */
    width: 100%;
    /* height: 100%; */
    height: 100vh;
    opacity: 0;
    background: no-repeat center center;
    background-size: cover;

    -webkit-transition: all 1000ms ease-out;
    -moz-transition: all 1000ms ease-out;
    -ms-transition: all 1000ms ease-out;
    -o-transition: all 1000ms ease-out;
    transition: all 1000ms ease-out;
    min-height: var(--original-viewport-height);

}

.carousel-fade>div:nth-child(1) {
    opacity: 1;
    background-image: url('../img/hero.jpg');
}

.carousel-fade>div:nth-child(2) {
    background-image: url('../img/hero-1.jpg');
}

.carousel-fade>div:nth-child(3) {
    background-image: url('../img/hero-2.jpg');
}

.carousel-fade>div:nth-child(4) {
    background-image: url('../img/hero-3.jpg');
}

.carousel-fade>div:nth-child(5) {
    background-image: url('../img/hero-4.jpg');
}

.carousel-fade>div:nth-child(6) {
    background-image: url('../img/hero-5.jpg');
}

.carousel-fade>div:nth-child(7) {
    background-image: url('../img/hero-6.jpg');
}

.carousel-fade>div:nth-child(8) {
    background-image: url('../img/hero-7.jpg');
}

.carousel-fade>div:nth-child(9) {
    background-image: url('../img/hero-8.jpg');
}

/* to change */

.no-flex-center {
    max-width: 700px;
    width: 100%;
    margin: 0px auto 60px auto;
}

.flex-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
	position: relative;
}

.full-upload-wr {
    background: #ffffff;
    margin-right: 20px;
    -webkit-border-radius: 10px;
    border-radius: 10px;

    overflow: visible;
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .2);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .2);
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

.input-wrapper {
    background: #ffffff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    position: relative;

    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .2);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .2);

    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.input-wrapper:after {
    content: '';
    position: absolute;
    left: -14px;
    bottom: 70px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 14px solid #fff;
    clear: both;

    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.input-wrapper.active:after {
    content: '';
    position: absolute;
    left: -14px;
    bottom: 70px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 14px solid #d01b1b;
    clear: both;

    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.col-flex-2, .col-flex-1 {
    max-width: 320px;
    width: 100%;
}

.col-flex-1 {
    margin-right: 35px;
}

.after-full-upload-wr {
    -webkit-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
	z-index: 9999;
}

.bootstrap-tagsinput {
	padding: 0px;
}

.bootstrap-tagsinput input {
	padding: 0px;
}

.input-wrapper input {
    border: none;
    outline: none;
    height: 45px;
    width: 100%;
    padding-left: 20px;
    color: #343434;
    font: 14px 'Open Sans', sans-serif;
    padding-top: 5px;
    font-weight: 600;
}

#template-preview {
    pointer-events: visible;
    cursor: pointer;
}

.input-wrapper input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #9a9a9a;
    font: 14px 'Open Sans', sans-serif;
    /* line-height: 40px; */
    font-weight: 600;
}

.input-wrapper input::-moz-placeholder { /* Firefox 19+ */
    color: #9a9a9a;
    font: 14px 'Open Sans', sans-serif;
    /*line-height: 45px;*/
    font-weight: 600;
}

.input-wrapper input:-ms-input-placeholder { /* IE 10+ */
    color: #9a9a9a;
    font: 14px 'Open Sans', sans-serif;
    /*line-height: 45px;*/
    font-weight: 600;
}

.input-wrapper input:-moz-placeholder { /* Firefox 18- */
    color: #9a9a9a;
    font: 14px 'Open Sans', sans-serif;
    /*line-height: 45px;*/
    font-weight: 600;
}

.underline {
    height: 3px;
    width: 100%;
    background-color: #F5F5F5;
}

.input-wr {
    padding: 5px;
}

/*WAS CHANGED*/
.btn-send, .btn-send-contact {
    margin-top: 10px;
    width: 100%;
    border: none;
    position: relative;

    -webkit-border-radius: 10px;
    border-radius: 10px;

    height: 50px;
    color: #fff;
    font: 16px 'Open Sans', sans-serif;
    font-weight: 600;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e86c3a+0,ffa300+100 */
    background: #e86c3a !important; /* Old browsers */
    background: -moz-linear-gradient(left, #e86c3a 0%, #ffa300 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #e86c3a 0%, #ffa300 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #e86c3a 0%, #ffa300 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e86c3a', endColorstr='#ffa300', GradientType=1); /* IE6-9 */
}

button.btn-send-contact {
    display: block;
    margin: 25px 0px 0px auto;
    width: 225px;
    height: 45px;
}


.btn-send > img, .btn-send-contact > img {
    display: inline-block;
    margin-top: -3px;
    margin-left: 10px;

    max-width: 19px;
    width: 100%;
}
/*WAS CHANGED*/

#upload_area {
    background: url("../img/upload_area-clear.svg") no-repeat center center;
    background-size: cover;

    height: 255px;
    width: 100%;

    text-align: center;
    padding: 0px 15px 10px 15px;

    overflow-y: auto;
    cursor: pointer;
}

.upload-content {
    position: absolute;
    top: 100px;
    width: 100%;
    text-align: center;

    pointer-events: none;
    cursor: default;
	/*z-index: 1;*/
}

.drop-here-text {
    color: #cecece;
    font: 16px 'Open Sans', sans-serif;
    font-weight: 600;
    margin: 12px 0px 0px 0px;
}

.before-upload-txt {
    color: #cecece;
    font: 18px 'Open Sans', sans-serif;
    font-weight: 600;
}

.file-placeholder-wr {
    width: 100%;
    cursor: auto;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    background-color: #ffffff;

    height: 50px;
    padding: 0px 15px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

    padding: 0px 15px;
    margin: 10px 0px 0px 0px;

    -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
}

.file-placeholder-wr-internal {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.file-placeholder-wr-internal>img {
    max-width: 23px;
    width: 100%;
}

.dz-filename {
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
    color: #343434;
    text-align: left;
}

.dz-size {
    color: #bcbcbc;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
    text-align: left;
}

.dz-details {
    padding-left: 15px;
}

.dz-file-preview {
    display: none;
}

.btn-remove {
    max-width: 14px;
    width: 100%;
    cursor: pointer;
}

.progress-wr {
    width: 340px;
    background-color: #f28026;
	position: relative;
	z-index: 999;

    padding: 15px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-left: -10px;

    -webkit-box-shadow: 0 5px 30px 0 rgba(123, 10, 0, 0.3);
    box-shadow: 0 5px 30px 0 rgba(123, 10, 0, 0.3);
}

.flex-progress-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	margin-top: 10px;
}

.progress-text {
    font: 13px 'Open Sans', sans-serif;
    font-weight: 600;
    color: #ffffff;
}

a.file-upgrade {
    color: #662b00;
    text-decoration: none;
    padding-left: 5px;
}

.progress {
    height: 10px;
    margin-bottom: 0px;
    border-radius: 10px;

    background-color: #FC9A0A;
    -webkit-box-shadow: inset 0px -1px 1px rgba(255, 255, 255, .3), inset 0px 0px 1px rgba(0, 0, 0, .2);
    box-shadow: inset 0px -1px 1px rgba(255, 255, 255, .3), inset 0px 0px 1px rgba(0, 0, 0, .2);
}

.progress-bar {
    background-color: #fee470;

    -webkit-box-shadow: inset 0px 2px 0px rgba(255, 255, 255, .3), inset 0px -2px 1px rgba(0, 0, 0, .3);
    box-shadow: inset 0px 2px 0px rgba(255, 255, 255, .3), inset 0px -2px 1px rgba(0, 0, 0, .3);
}

.flex-upload-click {
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    border: 2px dashed #C0BEBE;
    padding: 15px;
}

.flex-upload-click>img {
    max-width: 30px;
    width: 100%;
}

.click-upload {
    font: 15px 'Open Sans', sans-serif;
    color: #9a9a9a;
    margin: 0px 0px 0px 10px;
}

.click-upload > a {
    font: 15px 'Open Sans', sans-serif;
    color: #ffa500;
    text-decoration: none;
}

.flex-upload-click-wr {
    padding: 17px 10px;
	position: relative;
	top: -1px;
	background-color: #f5f5f5;
	-webkit-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}

.dz-max-files-reached {
    pointer-events: none;
    cursor: default;
}

.paypal-flex-wr {
	text-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.paypal-txt {
    font: 14px 'Open Sans', sans-serif;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.paypal-flex-wr > img {
    cursor: pointer;
    max-width: 120px;
    width: 100%;
}

.clipboard-btn {
    font: 13px 'Open Sans', sans-serif;
    color: #00a800;
    font-weight: 600;
    text-align: center;
    border-radius: 20px;
    line-height: 40px;
    height: 40px;
    padding: 0px 10px;
    background: #fff;
    cursor: pointer;
	margin-top: 10px;
}

.clipboard-flex-wr {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.clipboard-flex-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.clipboard-flex-text>img {
    max-width: 40px;
    width: 100%;
}

.sent-text {
    color: #ffffff;
    font: 14px 'Open Sans', sans-serif;
    font-weight: 600;
    margin: 0px 0px 0px 10px;
}

.upload-content > img {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;

    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;

    max-width: 52px;
    width:100%;
}

.footer-reserved {
    text-align: center;
    width: 100%;
    color: #fff;
    font: 13px 'Open Sans', sans-serif;
    font-weight: 600;

}

.flex-bottom > p.text-center > a:last-child {
    margin-left: 15px;
}

.flex-bottom > p.text-center > a {
    text-decoration: none;
}

/* input chip customize */
.bootstrap-tagsinput {
    width: 100%;
    border: 0px;
    box-shadow: none;

    overflow-y: auto;
    max-height: 305px;
    overflow-x: hidden;
}

.bootstrap-tagsinput::-webkit-scrollbar, #upload_area::-webkit-scrollbar {
    width: 7px;
}

.bootstrap-tagsinput::-webkit-scrollbar-track, #upload_area::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
}

.bootstrap-tagsinput::-webkit-scrollbar-thumb, #upload_area::-webkit-scrollbar-thumb {
    background-color: #C6C6C6;
    border-radius: 5px;
}

.label-info {
    background-color: #f3f3f3;
}

.bootstrap-tagsinput .tag {
    padding-left: 20px;
    display: block;
    margin-right: 0px;
    color: #343434;
    border: 1px solid #7D7D7D;
    border-radius: 20px;
    height: 40px;
    line-height: 35px;
    margin-top: 5px;
	position: relative;
}

.label {
    text-align: left;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
    cursor: pointer;
    float: right;
    width: 40px;
    height: 40px;
    margin: -3px -8px -1px 10px;
    border-radius: 50%;
    border: 1px solid #7D7D7D;
    text-align: center;
    background-color: #fff;
    padding-top: 5px;
	position: absolute;
	right: 7px;
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: url(../img/cross.png);
}

/* input chip customize */

.navbar-default {
    background-color: transparent;
    border-color: transparent;
}

.navbar {
    position: relative;
    min-height: 50px;
    border: none;
    z-index: 9999;
    margin-top: 0px;

}

.navbar-right {
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .2);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .2);
    border-radius: 10px;
}

.header-menu li a {
    display: inline-block;
    min-width: 100px;
    text-align: center;
    color: #353535 !important;
    font: 13px 'Open Sans', sans-serif;
    font-weight: 600;
    text-decoration: none;
    background-color: #ffffff;
    line-height: 12px;
}

.header-menu li a:hover {
    background-color: #ffffff !important;
}

#menu1 {
    border-right: 1px solid #e1e1e1;
}

#menu2 {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.navbar-brand img {
    max-width: 185px;
    width: 100%;
    margin: -20px 0px 0px 20px;
    min-width: 185px;
}


#facebook {
    width: 14px;
}

#twitter {
    width: 17px;
}

/* responsive */
@media (min-width: 992px) and (max-width: 1200px) {

}

@media (max-width: 1224px) {
    .full-upload-wr {
        margin-right: 20px;
    }

    .navbar-brand > img {
        margin-top: -25px;
    }

    .col-flex-2, .col-flex-1, .col-flex-3 {
        max-width: 400px;
    }

    .flex-row {
        display: flex;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
    }

    .input-wrapper:after {
        display: none;
    }

    .col-flex-1 {
        margin-right: 0;
       /* margin-bottom: 17px;*/
    }

    .progress-wr {
        width: 419px;
    }

    .navbar-right {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
@media (max-width: 767px) {

    .full-upload-wr {
        margin-right: 20px;
    }

    .navbar-brand > img {
        margin-top: -25px;
    }

    .col-flex-2, .col-flex-1, .col-flex-3 {
        max-width: 400px;
    }

    .flex-row {
        display: flex;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center;
    }

    .input-wrapper:after {
        display: none;
    }

    .col-flex-1 {
        margin-right: 0;
       /* margin-bottom: 17px;*/
    }

    .progress-wr {
        width: 419px;
    }

    .navbar-right {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #menu1, #menu2 {
        width: 100%;
        font: 14px 'Open Sans', sans-serif;
        line-height: 15px;
        background-color: transparent;
        color: #353535;
		font-weight: 600;
    }

    #menu1 {
        border-right: none;
    }

    .navbar-collapse {
        padding-right: 15px;
        padding-left: 15px;
        overflow-x: visible;
        -webkit-overflow-scrolling: touch;
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;

        position: absolute;
        width: 100%;
        background-color: transparent;
    }

    .navbar-default .navbar-toggle {
        border-color: #ffffff;
    }

    .navbar-toggle {
        border: 2px solid transparent;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #f5f5f5;
    }

    .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
        background-color: transparent;
    }

    .navbar-brand img {
        margin: -20px 0px 0px 0px;
    }

}

@media (max-width: 576px) {

    .general-full {
        padding: 20px 10px;
    }

    .progress-wr {
        width: 108%;
        margin-left: -14px;
    }

    .no-flex-center {
        margin: 35px auto 60px auto;
    }

}

@media (max-width: 440px) {

}

@media (max-width: 370px) {
    .progress-wr {
        padding: 10px;
    }

    .sent-text {
        font: 11px 'Open Sans', sans-serif;
    }

    .clipboard-btn {
        font: 12px 'Open Sans', sans-serif;
        padding: 0px 5px;
        line-height: 40px;
    }

    .progress-wr {
        width: 110%;
    }
}

/* responsive */