/* 10.05 updates */
.footer_soc a:hover .fa-twitter {
    color: #00aced;
}


.footer_soc a:hover {
    opacity: 1;
}
.footer_soc a .fab {
    transition: all 0.3s ease;
}
.footer_soc a:hover .fa-facebook-square {
    color: #3C5A99;
}
.footer_soc a:hover .fa-youtube {
    color: red;
}
.footer_soc a:hover .fa-linkedin-in {
    color: #4875B4;
}
.footer_soc a:hover .fa-instagram {
    color: #517FA4;
}
.facebook-like-wrapper {
    background: #4267b2;
    border: 1px solid #4267b2;
    color: #fff;
    cursor: pointer;
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/like.svg);
    background-size: 16px;
    background-position: 15px;
    background-repeat: no-repeat;
    margin-left: 25px;
    border-radius: 5px;
    position: relative;
}
.facebook-like-wrapper:after {
    content: "Like";
    color: #fff;
    font-size: 16px;
    margin-left: 15px;
    font-weight: 600;
}
.result-top-line {
    display: flex;
    justify-content: center;
    align-items: center;
}

.facebook-like-wrapper .fb-like {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
/* 10.05 updates end */



* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
img{
    max-width:100%;
}
header {
    position: relative;
    z-index:100;
    background: #ffffff;
    transition: 0.4s;
    border-bottom: 0px solid #EAEBF2;
}
.header-active {
    border-bottom: 1px solid #EAEBF2;
}
.header-active .header-wrap {
    border-bottom: 1px solid rgba(234, 235, 242, 0.00);
    height:60px;
}
.overley-bg, .pdf_preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(104, 52, 183, 0.5);
    z-index: 30;
    display:none;
}


.container {
    width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
.app-title h1 sup {
    position: relative;
    font-size: 22px;
    font-weight: 400;
    left: 5px;
    top: -7px;
}
.scroll-top {
    position: fixed;
    bottom: 12px;
    right: 15px;
    width: 34px;
    height: 34px;
    display: block;
    background-color: #6767E1;
    border: 1px solid #fff;
    background-image: url(../img/up-arrow.svg);
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.6s ease;
    transform: translateX(150%);
    z-index: 10;
    border-radius: 2px;
}
.scroll-top.active {
  opacity: 1;
  transform: none;
}
a.button-green {
    height: 50px;
    max-width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(54.25deg, #4298E8 0%, #8044DB 100%), linear-gradient(54.25deg, #ED6E76 0%, #F2AA6F 100%), linear-gradient(254.4deg, #61DFAA -19.24%, #2EB9B7 75.34%);
    box-shadow: 0px 4px 8px rgba(35, 28, 75, 0.15);
    border-radius: 5px;
    font-weight: 500;
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}
a.button-green:hover {
    opacity: 1;
    background: linear-gradient(54.25deg, #4298E8 0%, #6834b7 100%), linear-gradient(54.25deg, #ED6E76 0%, #F2AA6F 100%), linear-gradient(254.4deg, #61DFAA -19.24%, #2EB9B7 75.34%);
    color: #FFFFFF;
}
.login-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display:none;
    z-index:99;
    background:rgba(0, 0, 0, 0.35);
}
.login-modal-wrap{
    position:relative;
    background:#ffffff;
    margin:0 0 0 20%;
    width:80%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.lolin-modal-block{
    width:500px;
    max-width:100%;
    text-align:center;
}
.lolin-modal-block h3 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 40px;
    color:#333333;
}
.sign-form {
    max-width:350px;
    margin:60px auto 0 auto;
}
.sign-form  input {
    width:100%;
    display:block;
    height: 40px;
    padding: 6px 14px;
    font-size: 14px;
    border-radius:5px;
    margin-top: 20px;
}
.forgot-password {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.forgot-password a {
    color: #AAA;
    text-decoration: underline;
    transition:0.3s;
}
.forgot-password a:hover {
    color: #8044DB;
}
.sign-form button {
    background-color: #6834b7;
    color: #fff;
    border-color: #6834b7;
    outline: none;
    width:200px;
    height:45px;
    margin: 25px 0 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius:10px;
    cursor: pointer;
    transition: 0.3s;
}
.sign-form button:hover{
    background-color:#7c4dc2;
}
.lolin-modal-block .alert-danger {
    padding: 15px 0;
    margin-bottom: 12px;
}
.signed-google {
    margin: 20px auto 20px auto;
    width: 215px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 25px;
    background-color: #fff;
    color: #757575;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
    background-image: url(../img/google.svg);
    background-repeat: no-repeat;
    background-position: 8px 10px;
    background-size: 18px 18px;
}
.lolin-modal-block p {
    margin-top: 20px;
    color: #AAA;
}
.lolin-modal-block p a{
    color:#8044DB;
}
.lolin-modal-block p a:hover{
    text-decoration:underline;
}
#closeModal {
    font-size: 80px;
    padding: 5px 20px;
    text-decoration: none;
    opacity: 0.5;
    cursor: pointer;
    font-weight: 400;
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
}
#closeModal:hover{
    opacity:1;
}
.page-login {
    min-height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-login .login-modal-wrap {
    margin:0;
    width: auto;
    height: auto;
    padding:10px 0 50px;
}
.page-login #closeModal{
    display:none;
}
.new-container {
    display: flex;
    justify-content: center;
}
.new-container a{
    margin-left:10px;
    margin-right:10px;
}
.new-container a span{
    margin-right:7px;
}
/*header*/
.menu_mob {
    margin: 5px 0 0;
    position: relative;
    height: 42px;
    width: 40px;
    display: none;
}
.menu_mob span {
  background: #6767E1;
  display: block;
  height: 5px;
  width: 42px;
  position: absolute;
  top: 0;
  transition: 0.5s;
}
.menu_mob span:nth-child(2) {
  top: 13px;
}
.menu_mob span:nth-child(3) {
  top: 26px;
}
.active_drop_men span:nth-child(1) {
  background: #333333;
  transform: rotate(225deg);
  top: 14px;
}
.active_drop_men span:nth-child(2) {
  background: #333333;
  transform: rotate(135deg);
  top: 14px;
}
.active_drop_men span:nth-child(3) {
  background: #333333;
  transform: rotate(225deg);
  top: 14px;
}
.header-menu-active {
    background: #FBFBFB;
}
.header-menu-active .header-wrap {
    border-bottom: 1px solid rgba(234, 235, 242, 0.00);
}
.header-menu-active .open-menu-btn{
    background:#f5f5f5;
}
.header-wrap {
    height: 73px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EAEBF2;
    transition: 0.4s;
}
.header-logo{
    width:150px;
}
.header-menu-block {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 150px);
}
.header-menu {
    display: flex;
    align-items:center;
}
.header-menu li{
    margin-left:30px;
}
.header-menu li a ,
.header-lists li a{
    font-size: 14px;
    color: #333333;
    transition:0.3s;
}
.header-menu li a:hover ,
.header-lists li a:hover{
    color:#8044DB;
    text-decoration:underline;
}
.footer-menu li a:hover,
.footer-info a:hover {
    color: #b891f5;
    text-decoration: underline;
}
.header-lists {
    display: flex;
    align-items: center;
}
.header-lists li{
    margin-left:35px;
}
.header-lists li a img{
    margin-left:7px;
}
.footer-wrap {
    background: #46444C;
}
.footer-wrap .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:97px;
}
.footer-menu{
    display:flex;
}
.footer-menu li{
    margin:0 22px 0;
}
.footer-menu li a{
    display: flex;
    font-size: 14px;
    color: #FFFFFF;
    transition:0.3s;
}

.switch-language{
    width:125px;
    position:relative;
}
.switch-language select{
    width:100%;
}
.switch-language .select2-container--default .select2-selection--single {
    padding-left:35px;
    background-color: #46444C;
    border: 1px solid #46444C;
    outline:none;
}
.switch-language .select-img{
    position: absolute;
    top: 2px;
    z-index: 1;
    left: 0;
}
.switch-language  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white;
}
.select2-search--dropdown {
    display: none;
}
.footer-bottom {
    background: #3D3B43;
}
.footer-bottom .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
.footer-made {
    color: #ffffff;
    font-size: 14px;
}
.footer-made span{
    font-weight: 600;
}
.footer-info {
    display:flex;
}
.footer-info a {
    font-size: 14px;
    text-align: right;
    text-decoration-line: underline;
    color: #FFFFFF;
    margin-left: 34px;
    transition:0.3s;
}
.main-banner {
    padding: 50px 0 49px;
    background-image: url(../img/gradient-banner-bg.svg);
    background-repeat: no-repeat;
}
.main-banner .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.banner-left h1{
    font-weight: bold;
    font-size: 36px;
    color: #333333;
}
.banner-left p {
    font-weight: 500;
    font-size: 24px;
    color: #333333;
    margin:16px 0 28px;
}
.banner-left  .button-green {
    width:203px;
}
.banner-btns-links {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banner-btns-links li {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #EAEBF2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.banner-btns-links li:hover{
    border: 1px solid #c1c1c1;
}
.banner-pdf {
    width: 340px;
    max-width: 100%;
    background: #FFFFFF;
    border: 1px solid #EAEBF2;
    border-radius: 15px;
    padding:25px;
}
.banner-right {
    display: flex;
}
.span-line {
    background: #FFFFFF;
    border: 1px solid #EAEBF2;
    border-radius: 15px;
    height:16px;
    display:inline-block;
}
.span-line.span-gradient {
   background: linear-gradient(60.05deg, #4298E8 0%, #8044DB 100%), linear-gradient(60.05deg, #ED6E76 0%, #F2AA6F 100%);
}
.span-big{
    width:52px;
    margin-right:10px;
}
.span-little {
    width: 35px;
}
.pdf-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.pdp-edit {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(182, 185, 200, 0.25);
    width: 32px;
    height: 32px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    cursor:pointer;
    transition:0.3s;
}

.pdp-edit:hover {
    box-shadow: 0px 4px 25px rgba(182, 185, 200, 0.5);
}
.gradient-text {
    background: transparent;
    background: -webkit-gradient(linear, to right, color-stop(0%, #70abf2), color-stop(100%, #8044DB));
    background: -webkit-linear-gradient(60.05deg, #70abf2 0%, #8044DB 100%), linear-gradient(60.05deg, #ED6E76 0%, #F2AA6F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
    text-align: center;
    font-weight: 900;
    font-size: 100px;
    margin:45px 0 45px;
}
.gradient-img {
    width: 100%;
}

.def-pdf {
    padding: 60px 0 60px;
    background: linear-gradient(63.59deg, #4298E8 0%, #8044DB 100%);
    background-color: #8044DB;
    position:relative;
    /*background: linear-gradient(63.59deg, #4298E8 0%, #8044DB 100%);*/
}
.def-pdf:after{
    content:'';
    top:0;
    left:0;
    width:100%;
    height:100%;
    position:absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/home-blue-bg.svg);
}
.def-pdf-block {
    width:349px;
    max-width:100%;
    margin:auto;
    text-align: center;
    padding: 30px 51px 32px;
    background: #FFFFFF;
    border-radius: 15px;
    position:relative;
    z-index:5;
}

.def-pdf-block h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #333333;
    position: relative;
    margin: 29px 0 29px;
}
.def-pdf-block h6:before{
    content:'';
    background:#2EB9B7;
    position:absolute;
    width:45px;
    border-radius:50px;
    height:2px;
    left:calc(50% - 22px);
    bottom:-17px;
}
.def-pdf-block p {
    font-weight: 500;
    line-height: 21px;
    font-size: 14px;
    color: #333333;
    margin:0 0 19px;
}
.def-pdf-block p span{
    color:#6964E0;
    display:block;
}

.accordion-block{
    margin:0 0 10px;
}

.title {
    background-image: url(../img/how-to-icc.svg);
    background-repeat: no-repeat;
    background-position: top center;
    padding: 60px 0 20px;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    color: #333333;
    position: relative;
    margin: 0 0 20px;
}
.title span{
    display:block;
    margin:5px 0 0;
    color:#d4d4d4;
}
.how-to-pdf{
    margin:40px 0 50px;
}
.title:before {
    content: '';
    background: #2EB9B7;
    position: absolute;
    width: 45px;
    border-radius: 50px;
    height: 2px;
    left: calc(50% - 22px);
    bottom: 0;
}
.how-to-accordion{
    width:729px;
    max-width:100%;
    margin:auto;
}
.accordion-block {
    border: 1px solid #EAEBF2;
    border-radius: 15px;
    background: #FFFFFF;
}
.accordion-tittle {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 30px;
    cursor: pointer;
}
.accordion-name {
    font-size: 18px;
    color: #333333;
}
.accordion-info{
    display:flex;
    margin-right:40px;
}
.accordion-info li{
    text-align:center;
    width:20px;
    margin:0 6px;
}
.accordion-arrow{
    position:absolute;
    top:25px;
    right:27px;
    transition:0.5s;
}
.accordion-active .accordion-arrow{
    transform:rotate(180deg);
}
.accordion-active .accordion-name {
    font-weight: 500;
}
.accordion-text {
    border-top: 1px solid #EAEBF2;
    display: none;
}
.accordion-list {
    padding: 34px 43px 25px;
    border-bottom: 1px solid #EAEBF2;
}
.accordion-list li{
    color: #2EB9B7;
    font-weight: 600;
    font-size: 16px;
    list-style-type: decimal;
    margin:0 0 17px;
}
.accordion-list li span{
    font-weight: 400;
    color: #333333;
    padding-left:15px;
}
.accordion-btn{
    padding:15px 0;
}
.accordion-btn .button-green{
    width:285px;
    margin:auto;
   font-weight: 600;
}
.accordion-btn  .button-green span {
    padding: 0 7px;
    font-weight: 400;
    color:#eaeaea;
}
.new-block {
    margin:30px 0 0;
    display: inline-flex;
    border-radius: 20px;
    background-color: #F6F6F9;
    padding: 5px 10px;
    color: #6E5DDF;
    font-size: 13px;
}
.new-block b{
    font-weight: 600;
    color: #6E5DDF;
    position:relative;
    top:2px;
    left:2px;
}
.new-block p{
    color: #6E5DDF;
    margin-top: 0;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: normal
}
.new-block span{
    background: #6E5DDF;
    color:#ffffff;
    padding: 0px 5px;
    border-radius: 20px;
}

.pdf-tab{
    margin:40px 0 0;
}
.tab-btns {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    margin:0 0 35px;
}
.tab-btn-block {
    padding: 15px 15px;
    margin: 0 2px;
    border-radius: 4px 4px 0 0;
    margin-bottom: -1px;
    cursor: pointer;
    font-weight: 600;
    border: 1px solid #ffffff;
    color: #8044DB;
    border-bottom: 1px solid #ddd;
}
.tab-btn-block:hover {
    border: 1px solid #ddd;
    border-bottom: none;
}
.tab-btn-block.tab-active-btn {
    color:#46444C;
    border: 1px solid #ddd;
    border-bottom: 1px solid #ffffff;
}
.tab-block{
    display:none;
}
.textarea-name{
    text-align:center;
    margin:0 0 10px;
    font-size:16px;
    color:#333333;
}
.pdf-form textarea {
    width: 100%;
    margin: 0 0 10px;
    height: 100px;
    padding: 15px;
    color: #333333;
    resize:none;
}
.pdf-form p{
    margin:10px 0 15px;
    font-size:16px;
    text-align:center;
    color:#acacac;
}
.pdf-form-btns {
    margin: 10px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pdf-form-btns a.button-green{
    height:40px;
    padding:0 20px;
    margin-right:5px;
}
.more-options {
    height: 40px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    transition: 0.3s;
    border: 1px solid #ffffff;
}
.more-options:hover{
    color:#8044DB;
    border-radius:5px;
    border:1px solid #8044DB;
}
/* header menu */
.open-menu-btn {
    cursor: pointer;
    position: relative;
    padding: 10px 20px 10px 10px;
    border-radius: 4px;
}
.open-menu-btn:before{
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    background-image: url(../img/down-arrow.svg);
    background-size: cover;
}
.mega-menu {
    z-index: 899;
    position: relative;
    margin-top: 10px;
    display: none;
    border-bottom: 1px solid #EAEBF2;
}
.mega-menu-inner li a{
    position:relative;
}
.tooltip-block {
    display:none;
    color: #ffffff;
    position: absolute;
    bottom: 38px;
    background: #000000;
    padding:10px 15px 5px;
    width: 400px;
    left: -190px;
    z-index: 5;
    text-align: center;
    border-radius:5px;
    opacity:0;
    transition-delay:0.5s;
    transition:0.4s;
}
.tooltip-block::after {
    content: '';
    position: absolute;
    left: calc(50% - 4px);
    bottom: -16px;
    border: 8px solid transparent;
    border-top: 8px solid #000000;
}
.mega-menu-inner li a:hover{
    opacity:1;
}
.mega-menu-inner li a:hover .tooltip-block {
    opacity: 1;
    display:block;
}
.mega-menu-inner {
    background-color: #fff;
    padding-top: 33px;
    padding-bottom: 28px;
    position: relative;
}
.mega-menu .close {
    font-weight: 100;
    margin-top: -25px;
    margin-bottom: -35px;
    margin-right: 25px;
    font-size: 40px;
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20);
}
.mega-menu .row {
    margin-right: 0;
    margin-left: 0;
}
.mega-menu .col {
    padding-right: 0 !important;
    padding-left: 0 !important;
    min-height: 255px;
}

.col-xs-6 {
    width: 50%;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}
li.select2-results__option span{
    position:relative;
    top:-4px;
}
li.select2-results__option span img{
    position:relative;
    top:4px;
    margin-right:6px;
}
.select2-container--open .select2-dropdown {
    left: -6px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background:#8044DB;
}
.mega-menu ul {
    margin: 0;
    padding: 0;
}
.mega-menu .header {
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 12px;
    min-height: 24px;
    display: inline-block;
    padding-right: 12px;
    color: #999;
}
.mega-menu li a {
    line-height: 17px;
    color: #000;
    padding:7px 0;
    display: inline-block;
    text-decoration: none;
    text-overflow: ellipsis;
    position: relative;
    transition:0.3s;
}
.mega-menu li a:hover{
    color:#8044DB;
    text-decoration:underline;
}
.mega-menu .label.label-success {
    margin-left: 8px;
    font-weight: 400;
    background-color: rgba(104, 52, 183, 0.15);
    color: #6834b7;
    padding: .1em .3em .15em;
}
.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}
.menu-serch {
    clear: both;
    width: 400px;
    max-width: 100%;
    margin: auto;
    padding: 15px 0 0;

}
.menu-serch input{
    width: 100%;
    height: 40px;
    border: 1px solid #b69edb;
    outline: none;
    border-radius: 50px;
    padding-left: 40px;
    font-size: 16px;
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-size: 24px 18px;
    background-position: 10px 10px;

}


.subscription-plans {
    padding: 60px 0 35px;
    background-image: url(../img/pricing-bg.svg);
    background-size: cover;
}
.subscription-plans h2 {
    font-weight: bold;
    line-height: 48px;
    font-size: 36px;
    text-align: center;
    color: #FFFFFF;
}
.plans-btns {
    width: 480px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px auto 30px auto;
    border-radius: 5px;
    overflow: hidden;
}
.plans-btn-block {
    width: 50%;
    height: 50px;
    font-weight: 500;
    line-height: normal;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.50);
    cursor:pointer;
    transition:0.3s;
}
.plans-btn-block:hover{
    background: rgba(255, 255, 255, 0.75);
}
.plans-btn-block.plans-btn-active{
    background:#ffffff;
}
.plans-tab-block{
    display:none;
}
.plans-tab-block.plans-active {
    display: block;
}
.pracing-wrap{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.pracing-block {
    width: calc(33.333% - 20px);
    background: #FFFFFF;
    border-radius: 15px;
    padding: 0px 32px 24px;
    margin: 0 0 30px;
}
.pricing-cost {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 56px 0;
    font-weight: bold;
    font-size: 36px;
    background: transparent;
    background: -webkit-gradient(linear, to right, color-stop(0%, #70abf2), color-stop(100%, #8044DB));
    background: -webkit-linear-gradient(60.05deg, #70abf2 0%, #8044DB 100%), linear-gradient(60.05deg, #ED6E76 0%, #F2AA6F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.pricing-title {
    font-weight: 600;
    line-height: normal;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #333333;
    position:relative;
    margin-bottom:20px;
}
.pricing-title:before {
    content: '';
    background: #6D5DDF;
    position: absolute;
    width: 45px;
    border-radius: 50px;
    height: 2px;
    left: calc(50% - 22px);
    bottom: -14px;
}
.pricing-title span{
    font-weight:400;
}
.pricing-list{
    margin:0 0 15px;
}
.pricing-list li {
    padding: 8px 0 8px 25px;
    font-size: 14px;
    color: #333333;
    background-image: url(../img/green-ok.svg);
    background-size: 15px 14px;
    background-repeat: no-repeat;
    background-position: 0px 8px;
}
.pricing-list li.pricing-disable{
    background-image: url(../img/red-close.svg);
    background-size: 12px 14px;
    color:#9D9D9D;
}
.pricing-info{
    padding:0 0 15px;
}
.pricing-info-block {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.pricing-info-block:first-child{
    border-bottom: 1px solid #EAEBF2;
}
.pricing-left-info{
    width:calc(45% - 35px);
}
.pricing-right-info {
    width: calc(55% - 35px);
}
.pricing-info-title {
    font-weight: bold;
    font-size: 30px;
    color: #333333;
    margin:0 0 40px;
    position:relative;
}
.pricing-info-title:before {
    content: '';
    background: #2EB9B7;
    position: absolute;
    width: 45px;
    border-radius: 50px;
    height: 2px;
    left: 0;
    bottom: -14px;
}
.pricing-info .pricing-list li {
    padding: 8px 0 18px 25px;
}
.forever-free {
    padding: 45px 0 10px;
    background-image: url(../img/forever-free-bg.svg);
    background-size: cover;
}

.forever-free h2 {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    position:relative;
    margin-bottom:40px;
}
.forever-free h6:before {
    content: '';
    background: #FFFFFF;
    position: absolute;
    width: 45px;
    border-radius: 50px;
    height: 2px;
    left: calc(50% - 22px);
    bottom: -12px;
}
.forever-free .pracing-wrap{
    justify-content:center;
}
.pricing-faq{
    padding:60px 0 40px;
}
.pricing-faq-top {
    padding: 0 0 40px;
    border-bottom: 1px solid #EAEBF2;
}
.pricing-faq-top h2 {
    font-weight: bold;
    font-size: 36px;
    color: #333333;
    margin: 0 0 10px;
}
.pricing-faq-top p {
    font-size: 24px;
    color: #868686;
}
.pricing-bottom-info{
    padding:15px 0 0;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}
.faq-info-block{
    width:calc(50% - 15px);
    margin:30px 0 0;
}
.faq-info-block h3{
    font-weight: 600;
    line-height: 30px;
    font-size: 20px;
    color: #333333;
    margin:0 0 25px;
    position:relative;
}
.faq-info-block h6:before{
    content: '';
    background: #6D5DDF;
    position: absolute;
    width: 45px;
    border-radius: 50px;
    height: 2px;
    left: 0;
    bottom: -10px;
}
.faq-info-block p {
    line-height: 24px;
    font-size: 16px;
    color: #333333;
    margin:0 0 15px;
}
.faq-info-block p a{
    display:block;
    color:#6D5DDF;
    text-decoration:underline;
}
.copy-and-paste{
    background-color:#f2f2f5;
    border-radius:10px;
    padding:15px;
    margin:0 0 35px
}
.copy-and-paste textarea{
    width:100%;
    height:60px;
    padding:10px;
    resize:none;
    border-radius:10px;
    border-color:#d2d3db;
    color:#444444;
}
.copy-btns{
    margin:10px 0 0;
    display:flex;
}
.copy-btns a.button-green{
    padding:0 15px;
    height:40px;
}
.copy-and-paste .click-btn {
    background: none;
    color: #8044DB;
    margin-left: 10px;
    border: 1px solid #8044DB;
}
a.read-more-link {
    color: #8044DB;
    font-size:20px;
    display:block;
    margin:0 0 60px;
}
.switch-language:hover .languagepicker{
    display:block;
}
.languagepicker {
    display: none;
    position: absolute;
    background: #333333;
    width: 100%;
    bottom: 32px;
    padding:10px 0 8px;
    border-radius:5px 5px 0 0;
}
.language-active{
    position:relative;
}
.language-active:before{
    content: '';
    width: 8px;
    height: 4px;
    background-image: url(../img/arrow-bottom.svg);
    background-size: cover;
    position: absolute;
    top: 20px;
    right: 0;
}
a.language-link img {
    margin-right: 8px;
}

a.language-link {
    font-size: 14px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    padding:5px 12px;
}
a.language-link:hover{
    opacity:1;
}
.languagepicker a.language-link {
    transition:0.3s;
}
.languagepicker a.language-link:hover{
    background:#8044DB;
    color:#ffffff;
    opacity:1;
}

#app-root.drawing .page-side-bar,
#app-root.drawing .page-side-bar a,
#app-root.drawing .page-side-bar img,
#app-root.drawing .page-side-bar div {
    pointer-events: none;
    user-select: none;
}
.upload-top-info .app-welcome.teacher-welcome{padding-top: 0;}
.upload-top-info .app-welcome.blog-welcome{padding-top: 0;}
.upload-top-info .app-welcome.blog-welcome .upload-welcom-descr{
    margin: 0 auto 15px;
}

.how-it-works .post p.check-line{
    font-size: 12px;
    display: flex;
    align-items: center;
}.create-account-box{
     display: flex;
     flex-direction: column;
     align-items: center;
 }

.create-account-box input[type="text"],
.create-account-box input[type="email"],
.create-account-box input[type="password"]{
    width: 300px;
    height: 40px;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #EAEBF2;
}

.create-account-box .button-green{
    width: 300px;
    margin-bottom: 25px;
}

.create-account-box input[type="checkbox"]{
    margin-right: 10px;
}

.create-account-box p{
    text-align: center;
}

.images-link{
    display: flex;
    margin-bottom: 30px;
}

.images-link img{
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 30px;
}

.social-icons{
    display: flex;
    margin-bottom: 30px;
}

.social-icons a{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a img{
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.social-icons a.fb{background-color: #5E75AC;}
.social-icons a.gp{background-color: #E66A56;}
.social-icons a.tw{background-color: #33BAF4;}
.social-icons a.ml{background-color: #F9D533;}

.how-it-works .container.centered.noline:last-child {border-bottom: none;}

.scholl-image{width: 500px;}

.blog-post img{margin: 0 auto 25px; display: block;}

.blog-post .button-green{width: 135px;}

.blog-post b{font-weight: 700;}

.container.blog-container{padding-bottom: 50px;}

.date-blog-post{
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6E5DDF;
    margin-bottom: 25px;
}
.edit-label{
    margin:50px 0 40px;
    font-size:22px;
    
}
.edit-choose-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.edit-choose-block {
    display: block;
    width: 200px;
    height: 180px;
    padding:25px 15px 15px;
    border: 2px solid #6767E1;
    border-radius: 5px;
    margin: 0 10px 20px;
}
.edit-to-photo {
    height:75px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}
.edit-to-photo img {
    max-width: 35px;
    max-height:30px;
}
.edit-to-photo  img.little-iccon{
    max-width:15px;
    margin:0 7px;
}
.edit-to-text {
    font-weight: bold;
    color: #6767E1;
    font-size: 18px;
}
.edit-to-text:after {
    content: '';
    width: 18px;
    display: inline-block;
    height: 16px;
    position: relative;
    background-image: url(../img/arrow-go-to.svg);
    background-size: cover;
    position:relative;
    left:5px;
    transition:0.3s;
}
.edit-to-text:hover:after {
    left:10px;
}


.request-form h6 {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    margin: 0 0 10px;
}

.pdf-form.request-form p {
    margin: 10px 0 35px;
    font-size: 17px;
}
.request-form input {
    width: 100%;
    max-width: 600px;
    height: 40px;
    margin: 0 auto 20px auto;
    display: block;
    border: 1px solid #b69edb;
    outline: none;
    border-radius: 50px;
    padding-left: 20px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}
.request-form textarea {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    max-width: 600px;
    height: 150px;
    margin: 0 auto 20px auto;
    display: block;
    border: 1px solid #b69edb;
    outline: none;
    border-radius: 10px;
    padding-left: 20px;
    font-size: 16px;
}
.request-form strong{
    display:block;
    text-align:center;
    margin:0 0 10px;
    color:#333333;
    font-size:16px;
    font-weight:bold;
}
.request-form sub {
    display: block;
    text-align: center;
    color: #333333;
    margin: 10px 0 20px;
}
.edit-message {
    color: #aaa;
    text-align:center;
    font-size:14px;
    margin:20px 0 15px;
}
.mini-title-photo {
    font-size: 12px;
    color: #6767E1;
    width: 100%;
    text-align: center;
}
.split-page-idit{
    padding:70px 0 50px;
}
.split-page-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 15px 30px;
    position: relative;
}
.split-page-top p{
    font-weight:500;
    color:#333333;
}
.split-page-top .clear-btn{
    background: none;
    color: #8044DB;
    margin-left: 10px;
    border: 1px solid #8044DB;
    height: 40px;
    width: 155px;
}
.split-range {
    position: absolute;
    top: 30px;
    right: 40px;
    display:flex;
    align-items:center;
}
.split-range input{
    cursor:pointer;
}
.split-range img{
    max-width:15px;
    margin:0 7px;
}
.split-main-wrap {
    padding: 50px 20px 30px;
    background: #E8E8E8;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.split-main-block{
/*    width:12%;*/
    margin:0 0 15px;
    text-align:center; 
    padding:10px 17px 20px;
    cursor:pointer;
    transition:0.3s;
}
.split-main-block:not(.extract_block_not_split):hover{
    background: #dedede;
    border-right:2px dashed #333333;
}

.extract_block_not_split:hover{
    background: #dedede;
}

.split-main-block:not(.extract_block_not_split):hover .split-main-photo{
    left:-10px;
}
.split-main-photo {
    padding: 12px 10px;
    background: #ffffff;
    position:relative;
    left:0;
    transition:0.3s;
}
.split-main-num{
    color:#333333;
    margin:0 0 5px;
    font-size:15px;
}
 .tooltip-wrap {
    position: relative;
    display: inline-block;
    cursor:pointer;
}
  .tooltip-wrap .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -125px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-wrap .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

 .tooltip-wrap:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.fixed-bottom-panel h4{
    text-align:center;
    font-size:18px;
    font-weight:700;
    margin:10px 0 15px;
}
.split-every{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:10px 0 15px;
}
.split-every-text{
   color:#333333;
}
.split-every-input {
    width: 40px;
    height:40px;
    text-align:center;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    color:#333333;
    border-radius: 3px;
    margin:0 8px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.split-every  .tooltip-wrap{
    margin-left:10px;
}
.alt-mix-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 100px 0 100px;
}
.alt-mix-block{
    width:650px;
    max-width:100%;
    padding:10px;
    border-radius:5px;
    position:relative;
    background:#F9F9F9; 
    /* transition:0.3s; */
}
.alt-mix-title {
    display: flex;
    align-items: center;
}
.alt-mix-title img {
    width:25px;
}
.alt-mix-title span{
    margin-left:10px;
    color:#333333;
    font-size:16px;
}
.alt-mix-block p{
    color:#333333;
    font-size:16px;
    margin-right:10px;
}
.pick-pages-btn {
    margin:15px 0 10px;
    display: flex;
    align-items:center;
    flex-wrap: wrap;
}
.order-edit-btn {
    width: 120px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cccccc;
}
.regular-order-btn{
    border-radius:5px 0 0 5px;
}
.reverse-order-btn{
    border-radius:0 5px 5px 0;
}
.order-edit-btn:hover {
    opacity: 1;
    background: #D7F6EE;
    border: 1px solid #00A37A;
}
.order-edit-btn.order-btn-active {
    background: #D7F6EE;
    border: 1px solid #00A37A;
}
.switch-alt-mix{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}
.switch-alt-mix input {
    width: 50px;
    height: 30px;
    text-align: center;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    color: #333333;
    border-radius: 3px;
    margin-right:10px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.alt-close-block{
    position:absolute;
    color:#7d7d7d;
    top:10px;
    right:10px;
}


.alt-mix-block .file_num{
    position: absolute;
    right: 0px;
    top: 0px;
    visibility: visible;
}


.alt-mix-block .delete_file{
	display: none;
	visibility: hidden;
	opacity: 0;
    position: absolute;
    transform: rotate(45deg);
    font-size: 24px;
    right: -3px;
    top: -5px;
}


.alt-mix-block:hover .file_num{
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.5s linear;
}

.alt-mix-block:hover .delete_file {
	display: block;
	visibility: visible;
	opacity: 1;
	transition: visibility 0s, opacity 0.5s linear;

}
.alternate-right-block .app-welcome {
    padding: 0;
}
.alternate-right-block .upload-btn-wrap {
    width: 250px;
}
.alternate-right-block .upload-button {
    position: relative;
}
.alternate-right-block .upload-button:before{
    content: '';
    width: 23px;
    height: 23px;
    position: absolute;
    top: 14px;
    left: 20px;
    background-image: url(../img/add-list.svg);
    background-size: cover;
}
.list-mix {
    margin: 30px 0 0;
    display: flex;
    justify-content: flex-end;
}
.list-mix a{
    margin:0 7px;
    color:#8044DB;
}

.crop-edit {
    margin: 100px 0 0;
    padding: 15px 0 100px;
    background: #E8E8E8;
}
.crop-edit-block{
    padding:20px 15px 15px;
    border-radius:10px;
    background:#eeeeee;
    margin:0 0 20px;
}
.crop-text{
    text-align:center;
    margin:30px 0 40px;
    color:#333333;
}
.crop-edit-photo {
    background: #999999;
    position: relative;
}

.crop_border{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	
}

.crop-edit-photo img{
    width:100%;
}
.crop-edit-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin:0 0 40px;
}

.crop-edit-form label {
    margin-right: 20px;
}

.crop-edit-form span {
    color: #333333;
    padding-right: 10px;
}

.crop-edit-form input {
    width: 50px;
    height: 30px;
    text-align: center;
    color: #979797;
    border: 1px solid #979797;
}
.crop-title{
    text-align:center;
    font-size:18px;
    font-weight:600;
    margin:0 0 15px;
}
.encrypt-new-edit{
    padding:120px 0 70px;
}
.encrypt-new-edit .fixed-task-form {
    max-width: 750px;
}
.encrypt-new-edit .more-options-btns-wrap{
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
}
.encrypt-new-edit .options-btn{
    margin-right:20px;
}
.encrypt-forms{
    margin:40px 0 10px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}
.more-options-box .head-space .encrypt-forms label {
    margin: 0 12px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.encrypt-forms .encrypt-span{
    padding:0 7px;
    font-size:14px;
    color:#333333
}
.encrypt-depending{
    text-align:center;
    color:#cccccc;
    margin:5px 0 15px;
    font-size:12px;
}
.encrypt-btn{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}
.encrypt-btn p{
    margin-right:10px;
    font-size:16px;
    color:#333333;
    font-weight:bold;
}
.encrypt-btns-wrap {
    display: flex;
    flex-wrap: wrap;
}
.encrypt-btn-name {
    padding:7px 10px;
    background: #ffffff;
}
.encrypt-btn-name:nth-child(1){
    border: 1px solid #cccccc;
    border-radius:5px 0 0 5px;
}
.encrypt-btn-name:nth-child(2){
    border: 1px solid #cccccc;
}
.encrypt-btn-name:nth-child(3){
    border: 1px solid #cccccc;
    border-radius:0 5px 5px 0;
}
.encrypt-btn-name:hover {
    opacity: 1;
    background: #D7F6EE;
    border: 1px solid #00A37A;
}
.encrypt-btn-active {
    background: #D7F6EE;
    border: 1px solid #00A37A;
}
.repair-new-edit{
    padding:100px 0 40px;
}
.repaired-bottom {
    margin: 50px 0 20px;
}
.repaired-bottom p{
    text-align:center;
    margin:0 0 25px;
    color:#cccccc;
}
.repaired-bottom .button-green{
    width: 150px;
    height: 42px;
    margin: auto;
}
.new-edit-resize{
    margin:100px 0 50px;
}
.related-text {
    margin: 20px 0 10px;
    font-size: 16px;
    color: #a4a4a4;
}
.related-text a{
    color:#6767E1;
}
.choose-an-option{
    width:100%;
    margin:30px 0 15px;
    text-align:center;
    font-weight:600;
}
.btn-resize-continue{
    width:100%;
    margin:40px 0 0;
}
.btn-resize-continue .button-green{
    width:170px;
    margin:auto;
}
.split-extract-block.resize-margin-block {
    width: auto !important;
}
.resize-text, .new_page_size_here{
    margin:12px 0 0;
    color:#333333;
    font-size:11px;
}

.resize-text.overline{
	text-decoration: line-through;
}

.split-extract-block.resize-margin-block.resize-margin-active {
    background: #FFD490;
}
.split-extract-block.resize-margin-block.resize-margin-active:hover{
    background-color: #f4a300;
}
.margin-forms {
    max-width: 880px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.margin-forms h3{
    width:100%;
    margin:0 0 20px;
    font-size:16px;
    font-weight:bold;
}
.margin-label{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:16px;
    color:#333333;
    margin:0 0 10px;
}
.margin-label b{
    font-weight:bold;
    width:80px;
    text-align:right;
}
.margin-label input{
    width:75px;
    height:40px;
    border-radius:5px;
    padding-left:10px;
    margin:0 7px;
}
.margin-label.full-width{
    width:100%;
}
.resize-btn-block{
    width:100%;
    margin:30px 0 0;
}
.resize-btn-block a.button-green{
    width:160px;
    height:40px;
    margin:auto;
}
.select {
    width: 200px;
    height: 40px;
    display: block;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 10px;
    cursor:pointer;
    outline: none;
    background-image: url(../img/arrow-select.svg);
    background-size: 11px;
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select::-ms-expand {
    display: none;
}
.split-page-idit.resize-split-wrap{
    padding-bottom: 0;
}
.watermark-eit-wrap {
    padding: 30px 0 40px;
    background: #E8E8E8;
}
.watermark-pdf-block{
    max-width:calc(100% - 30px);
    margin:auto;
    text-align:center;
}
.watermark-btns{
    margin:0 0 20px;
    display:flex;
    justify-content:center;

}
.watermark-btn-block {
    padding: 9px 10px 9px 30px;
    border: 1px solid #6767E1;
    color: #6767E1;
    background-size: 12px;
    cursor: pointer;
    background-position: 10px 9px;
    background-repeat: no-repeat;
    transition: 0.3s;
}
.watermark-add-text {
    background-size: 12px;
    background-position: 10px 9px;
    border-radius: 5px 0 0 5px;
    background-image: url(../img/text-iccon.svg);
}
.watermark-add-image {
    background-image: url(../img/picture-iccon.svg);
    border-left: none;
    border-radius: 0 5px 5px 0;
    background-size: 16px;
    background-position: 8px 8px;
}
.watermark-add-image input {
    display: none;
}

.recognize-text-section {
   padding:50px 0 70px;
}
.recognize-text-online {
    padding: 30px 50px 100px;
    background: #E8E8E8;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.recognize-left-pdf{
    width:calc(50% - 50px);
    background:#ffffff;
    padding:30px 20px;
}
.recognize-midle{
    width:100px;
    text-align:center;
}
.recognize-midle span{
    display:block;
    font-size: 25px;
    color: #CCC;
}
.recognize-midle img{
    width:20px;
}
.recognize-right-info {
    width: calc(50% - 50px);
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 20px;
    background: #ffffff;
}
.recognize-info-block{
    width:100%;
}
.recognize-info-block p {
    text-align: center;
    color: #AAA;
    padding: 10px;
}
.recognize-info-block .preloader {
    text-align: center;
}
.recognize-btns-block{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}
.recognize-btns-block .select {
    width: 110px;
    margin:0 10px 0 0;
}
.recognize-btns-block a.button-green {
    height: 40px;
    width: 250px;
    font-size: 13px;
    transition: 0.3s;
}
.recognize-settings{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}
.recognize-settings-block{
    padding:15px;
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.recognize-settings-name{
    font-weight:bold;
    margin-right:10px;
}
.recognize-settings-block .select{
    width:140px;
    margin:0;
}
.output-formats-btns {
    margin: 15px 0 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.output-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cccccc;
    font-size: 13px;
    padding: 7px 10px;
    cursor: pointer;
    transition:0.3s;
}
.output-btn-active:nth-child(1) {
    border-radius: 5px 0 0 5px;
}
.output-btn-active:nth-child(2) {
    border-radius: 0 5px 5px 0;
}
.output-btn:hover {
    opacity: 1;
    background: #D7F6EE;
    border: 1px solid #00A37A;
}
.output-btn.output-btn-active {
    background: #D7F6EE;
    border: 1px solid #00A37A;
}
@media (min-width: 768px) {
    .col-sm-2 {
        width: 16.666666666666664%;
    }

    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }
    
    .footer-menu{
    	margin-left: 173px;
    }
}
.canvas_padding_outer{
	border: 1px solid #ebebeb;
	overflow: hidden;

}

.page_size {
    width: 100%;
}

.fancybox-container {
    z-index: 999 !important;
}



.app-welcome form{
	position: relative;
}



.switch-language:hover .languagepicker{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	right: 0;
	width: 550px;
}

.languagepicker li{
	width: calc(33.3333% - 15px);
margin-right: 15px;
}

.languagepicker li img {
	min-width: 32px;
}

@media (max-width: 767px) {
	.switch-language:hover .languagepicker{
		width: 400px;
		left: 50%;
		margin-left: -200px;
	}
	.languagepicker li{
		width: calc(50% - 15px);
	}
}

@media (max-width: 575px) {
	.switch-language:hover .languagepicker{
		width: 300px;
		left: 50%;
		margin-left: -150px;
	}
}


