@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-family: 'Encode Sans Expanded';
    font-weight: 500;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.txt-clr {
    color: #28b16d;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.pb-10 {
    padding-bottom: 100px;
}

.pt-10 {
    padding-top: 100px;
}

.all-section {
    padding: 0px 0 50px;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.theme-btn {
    /* background: linear-gradient(108.6deg, #49AB81 17.11%,  105.48%); */
    background: radial-gradient(circle, #49AB81 0%, #0E6B43 100%);
    position: relative;
    z-index: 1;
    padding: 14px 25px;
    display: inline-block;
    color: #fff;
    border-radius: 50px;
    font-size: 21px;
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    letter-spacing: -1px;
    transition: all 0.3s ease-in-out 0s;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.theme-btn:hover {
    animation: ani 8s linear infinite;
    border: none;
    color: #fff;
    transition: all 0.3s ease-in-out 0s;
}

@keyframes ani {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 400%;
    }
}

.theme-btn:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: radial-gradient(circle, #49AB81 0%, #0E6B43 100%);
    background-size: 400%;
    border-radius: 35px;
    transition: 1s;
    width: 100%;
    height: 100%;
    animation: gradient 15s ease infinite;
}

.theme-btn:hover::before {
    filter: blur(20px);
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Encode Sans Expanded';
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Encode Sans Expanded';
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Encode Sans Expanded';
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Encode Sans Expanded';
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Encode Sans Expanded';
    font-size: 20px;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Encode Sans Expanded';
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

.calc-ship p {
    color: #000;
    font-size: 17px;
    line-height: 28px;
    font-family: 'Encode Sans Expanded', serif;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0px;
}

.calc-ship h2 {
    font-family: 'Encode Sans Expanded', Sans-Serif;
    font-size: 33px;
    line-height: 39px;
    color: #000;
    font-weight: 700;
    margin: 0 0 25px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 25px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec li>ul:after {
    display: none;
}

ul#menu {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

ul#menu,
.droopdwon ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

ul#menu li a,
.droopdwon ul li a {
    position: relative;
    align-items: center;
    display: flex;
    text-decoration: none;
    color: #000;
    padding: 10px 51px;
    font-size: 20px;
    gap: 10px;
}

.menulogo {
    text-align: center;
}


/*.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}*/

.menuSec ul li:last-child a {
    /* padding-right: 18px; */
    /* padding-left: 22px; */
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    left: 0px;
    width: 550px;
    text-align: left;
    top: 43px;
    padding: 20px;
    background: #E1FFF2;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
header .menuSec li>ul>li>a {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: start;
    width: 100%;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.droopdwon ul {
    margin: 0;
}

.menuSec li ul li a:hover {
    /* background-color: #ffffff; */
    /* color: #000000 !important; */
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    /* content: " "; */
    /* display: table; */
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

ul#menu li {
    position: relative;
    padding: 10px 0;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

/*.dropdown-menu {*/
/*    position: absolute !important;*/
/*    z-index: 1000;*/
/*    display: block;*/
/*    min-width: 10rem;*/
/*    padding: 0.5rem 0;*/
/*    margin: 0;*/
/*    font-size: 1rem;*/
/*    color: #212529;*/
/*    text-align: left !important;*/
/*    background-color: #fff;*/
/*    background-clip: padding-box;*/
/*    border: 1px solid rgba(0, 0, 0, 0.15);*/
/*    border-radius: 0.25rem;*/
/*}*/

a.btn-2 {
    background: linear-gradient(90deg, rgba(73, 171, 129, 1) 0%, rgba(14, 107, 67, 1) 83%);
    font-family: 'Encode Sans Expanded';
    width: 107%;
    border-radius: 33px;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    padding: 0 30px !important;
    border: 1px solid transparent;
    height: 55px;
    align-items: center !important;
    justify-content: center;
    line-height: 1;
}
.btn-2 {
    background: linear-gradient(90deg, rgba(73, 171, 129, 1) 0%, rgba(14, 107, 67, 1) 83%);
    font-family: 'Encode Sans Expanded';
    width: 107%;
    border-radius: 33px;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    padding: 0 30px !important;
    border: 1px solid transparent;
    height: 55px;
    align-items: center !important;
    justify-content: center;
    line-height: 1;
}

.marquee-text img {
    display: none;
}


/*banner css start */

ul#menu li a {
    padding: 0 !important;
    font-family: 'Encode Sans Expanded';
    font-weight: 500;
}

ul#menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.1); */
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/*slick slider in tabs css start*/


/* Style the tab */

a.btn-2:hover {
    background: #000;
    border: 1px solid #fff;
}

.tab_sec .tab {
    overflow: hidden;
    border: 0;
    background-color: #ffffff;
}


/* Style the buttons that are used to open the tab content */

.tab_sec .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}


/* Change background color of buttons on hover */

.tab_sec .tab button:hover {
    background-color: #ddd;
}


/* Create an active/current tablink class */

.tab_sec .tab button.active {
    background-color: #ccc;
}


/* Style the tab content */

.tab_sec .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 0;
}

.tabcontent.active {
    display: block;
}


/*slick slider in tabs css start*/

.nav-item {
    padding: 10px;
}


/*My Banner Css*/

.menuSec .row {
    align-items: center;
}

.banner_text h1 {
    font-size: 49px;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 700;
    line-height: 67.13px;
    color: #000;
}

.banner_text p {
    font-family: 'Encode Sans Expanded';
    font-size: 24px;
    line-height: 32px;
    color: #000;
    width: 90%;
    margin-bottom: 60px;
}

.banner_text {
    margin-left: 0;
}

.banner_text h1 span {
    color: #317256;
    border: 1px solid #31725645;
    padding: 1px 16px;
    border-radius: 71px;
    background: #BCF6DD;
}


/*Section Digital Transport Start*/

.digital-trans-img img {
    width: 100%;
}

.text-digital-trans h2 {
    font-size: 33.14px;
    line-height: 39.77px;
    color: #000;
    font-weight: 700;
    margin-bottom: 0px;
}

.text-digital-trans p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    padding: 40px 0px;
    text-align: left;
}

.btn-1 {
    border: 1px solid #317256;
    padding: 18.52px;
    font-size: 18.52px;
    color: #fff;
    font-weight: 500;
    font-family: 'Encode Sans Expanded';
    border-radius: 44px;
    background: linear-gradient(90deg, rgba(73, 171, 129, 1) 0%, rgba(14, 107, 67, 1) 83%);
}

.btn-1:hover {
    background: #000;
    border: 1px solid #fff;
    border-radius: 44px;
    color: #fff;
}

.digital-trans .row {
    display: flex;
    align-items: center;
}
.text-digital-trans {
    margin-left: 30%;
}
.digiral-trans-a {
    margin-left: 30%;
}

.text-digital-trans {
    margin-top: 80px;
}

.digital-trans-img {
    position: relative;
    z-index: -1;
}

.digital-trans-img:before {
    content: '';
    position: absolute;
    background-image: url(../images/diitalimgbefore.png);
    width: 100%;
    height: 540px;
    top: 22%;
    background-repeat: no-repeat;
    left: 39%;
    z-index: -1;
}


/*Section Digital Transport End*/


/*Section How Does It Work Start*/

.top-text.how.does {
    text-align: center;
    margin-bottom: 60px;
}

.top-text.how.does h2 {
    font-size: 29.49px;
    font-weight: 700;
    color: #000;
    font-family: 'Encode Sans Expanded';
    line-height: 35.39px;
}

.top-text.how.does p {
    font-family: 'Encode Sans Expanded';
    font-size: 17.1px;
    line-height: 26.7px;
    color: #000;
}

.top-text.how.does p span {
    display: block;
}

.text-automate h4 {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Encode Sans Expanded';
    color: #000;
}

.text-automate p {
    font-size: 11.57px;
    font-weight: 400;
    font-family: 'Encode Sans Expanded';
    color: #000;
    line-height: 13.88px;
    margin-bottom: 34px;
}

.text-automate a {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Encode Sans Expanded';
    color: #000;
    line-height: 1.2;
}

.text-automate {
    text-align: center;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
}

.maindvhowdoes:before {
    position: absolute;
    content: '';
    /* background-image: url(../images/Automatebefore.png); */
    width: 341px;
    background-repeat: no-repeat;
    height: 330px;
    z-index: -1;
    top: -43px;
}

li.step1 {
    width: 30%;
}

li.step3 {
    width: 30%;
}

li.step2 {
    width: 40%;
}

.maindvhowdoes>img {
    width: 100%;
    height: 320px;
}

.elemintingdvhowdoes>img {
    width: 100%;
    height: 320px;
}

.reducingdvhowdoes>img {
    width: 100%;
    height: 320px;
}

li.step1 .text-automate {
    left: -30px;
}

.text-automate img {
    background: #E2FBF0;
    padding: 19px 19px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.maindvhowdoes {
    position: relative;
}

.text-automate p span {
    display: block;
}

li.step3 .text-automate {
    left: 30px;
}

.elemintingdvhowdoes:before {
    position: absolute;
    content: '';
    /* background-image: url(../images/eliminating.png); */
    width: 531px;
    background-repeat: no-repeat;
    height: 330px;
    z-index: -1;
    top: -43px;
    right: -84px;
}

.elemintingdvhowdoes {
    position: relative;
}

.elemintingdvhowdoes .text-automate {
    text-align: center;
    /* margin-left: -6%; */
}

.text-automate h4 span {
    display: inline;
}

.reducingdvhowdoes:before {
    position: absolute;
    content: '';
    /* background-image: url(../images/reducing.png); */
    width: 341px;
    background-repeat: no-repeat;
    height: 330px;
    z-index: -1;
    top: -43px;
    right: 3px;
}

.reducingdvhowdoes {
    position: relative;
}

.how-does .row {
    display: flex;
    justify-content: center;
}

.reducingdvhowdoes .text-automate h4 {
    line-height: 17px;
}

.bottomtexthowit p span {
    display: block;
}

.bottomtexthowit p {
    font-size: 20px;
    font-family: 'Encode Sans Expanded';
    color: #000;
    font-weight: 500;
    padding: 85px 0px 20px;
}

.bottomtexthowit {
    text-align: center;
}

.how-does {
    padding: 85px 0px;
    position: relative;
}

.how-does:before {
    content: '';
    position: absolute;
    background-image: url(../images/howdoesitbeore.png);
    width: 100%;
    height: 510px;
    top: -36px;
    background-repeat: no-repeat;
    left: 63px;
    z-index: -1;
}


/*Section How Does It Work End*/


/*Section documentation Start*/

.toptext-docu p {
    font-family: 'Encode Sans Expanded';
    font-size: 25px;
    font-weight: 900;
    text-align: center;
    color: #fff;
    margin-bottom: 35px;
    text-shadow: 1px 2px #000;
}

.toptext-docu p span {
    display: block;
}

.dv1docu {
    text-align: center;
}

.dv1docu h3 {
    font-family: 'Encode Sans Expanded';
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    margin-top: 25px;
    margin-bottom: 0px;
    color: #fff;
}

.dv1docu h3 span {
    display: block;
}

.documentation {
    padding: 71px 0px;
    background: #49AB81;
    position: relative;
}

.documentation:before {
    content: '';
    position: absolute;
    /* background-image: url(../images/getstartedback.png); */
    width: 100%;
    height: 760px;
    z-index: -1;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    background-position: 70px 0px;
}

.docu-button a {
    font-size: 31px;
    font-weight: 700;
    color: #000;
    border: 1px solid #FFF;
    width: 288px;
    padding: 46px 0px;
    border-radius: 74px;
    position: absolute;
    left: 60px;
    right: 0;
    top: 97px;
    margin: 0 auto;
    height: 122px;
    background: #fff;
    color: #317256;
    font-family: 'Encode Sans Expanded';
}

img.proc-shape {
    position: absolute;
    bottom: -265px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.docu-button a:hover {
    background: #000;
    color: #fff;
}

.docu-button a:before {
    position: absolute;
    content: '';
    background-image: url(../images/getstartedbefore.png);
    width: 400px;
    height: 350px;
    top: -145px;
    left: -50px;
    background-repeat: no-repeat;
    z-index: -1;
}

.docu-button {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}


/*Section documentation End*/


/*Section Optimized Start*/

.opti-img {
    text-align: end;
    margin-top: 60px;
    position: relative;
}

.optimized {
    padding: 12% 0px 15%;
    position: relative;
    margin-top: 10%;
}

.opti-img:before {
    content: '';
    position: absolute;
    background-image: url(../images/optiimgbefore.png);
    width: 100%;
    height: 320px;
    background-repeat: no-repeat;
    left: 36px;
    top: -113px;
}

.opti-img:after {
    content: '';
    position: absolute;
    background-image: url(../images/optiimgafter.png);
    width: 100%;
    height: 550px;
    background-repeat: no-repeat;
    left: 67px;
    top: -88px;
    z-index: -1;
}

.dvtextopti h2 {
    font-family: 'Encode Sans Expanded';
    font-size: 33px;
    color: #000;
    font-weight: 700;
    line-height: 39px;
    margin-bottom: 50px;
}

.dvtextopti h2 span {
    display: block;
}

.dvtextopti p {
    font-size: 20px;
    font-family: 'Encode Sans Expanded';
    color: #000;
    font-weight: 500;
    width: 97%;
}

.optimized .row {
    align-items: center;
}

.dvtextopti {
    padding: 0px 0px 0px 107px;
    position: relative;
}

.dvtextopti:before {
    content: '';
    position: absolute;
    background-image: url(../images/optitexetbefore.png);
    width: 100%;
    height: 530px;
    background-repeat: no-repeat;
    top: -88px;
    right: -163px;
    z-index: -1
}

.optimized:after {
    position: absolute;
    /* content: ''; */
    /* background-image: url(../images/optimizationsecbefore.png); */
    /* width: 100%; */
    /* height: 1120px; */
    /* background-repeat: no-repeat; */
    /* right: -145px; */
    /* top: -80px; */
}


/*Section Optimized End*/


/*Section Distance Start*/

.distance-text h3 {
    font-size: 33px;
    font-family: 'Encode Sans Expanded';
    line-height: 39.11px;
    font-weight: 700;
    color: #fff;
}

.distance-text p {
    font-size: 20px;
    font-family: 'Encode Sans Expanded';
    font-weight: 400;
    line-height: 30px;
    color: #fff;
}

.distance-text {
    padding: 0px 35px;
    margin-top: 60px;
    position: relative;
}

.distance {
    background: #49AB81;
    padding: 82px 0px 100px;
}

.distance-text:before {
    content: '';
    position: absolute;
    background-image: url(../images/distancetextbefore.png);
    width: 100%;
    height: 751px;
    background-repeat: no-repeat;
    left: 0;
    bottom: -97px;
}

.dv1international h3 {
    text-align: center;
    font-size: 33px;
    font-weight: 700;
    line-height: 43px;
    padding: 11% 0px;
    position: relative;
    color: #fff;
    font-family: 'Encode Sans Expanded';
}

.dv1international h3 span {
    display: block;
}

.international:before {
    background-image: url(../images/internation.png);
    width: 100%;
    height: 340px;
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    z-index: -1;
    background-size: cover;
    left: 0;
}

.dv1international {
    margin-top: 100px;
}

.dv1international h3:before {
    content: '';
    position: absolute;
    background: #000;
    width: 70%;
    height: 240px;
    left: 170px;
    z-index: -1;
    top: 58px;
    border-radius: 20px;
}

.dv1international h3:after {
    content: '';
    position: absolute;
    background-image: url(../images/intertextafter.png);
    width: 100%;
    height: 340px;
    background-repeat: no-repeat;
    z-index: -1;
    top: -7px;
    left: 34%;
}


/*Section Distance End*/


/*Footer Start*/

ul.ul1ft li a {
    font-size: 15px;
    font-family: 'Encode Sans Expanded';
    color: #fff;
    font-weight: 700;
}

ul.ul1ft li a:hover {
    color: #000000;
}

ul.ul1ft {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 30px;
    gap: 80px;
    /* margin-left: 40px; */
}

ul.ul2ft {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-right: 32px;
}

ul.ul2ft li a {
    color: #fff;
    font-size: 32px;
}

ul.ul2ft li a:hover {
    color: #000000;
}

.footer {
    padding: 50px 0 15px;
    background: #49ab81;
}

.dv1ft-btm p {
    font-size: 12.6px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 18.9px;
}

.dv2ft-btm {
    display: flex;
    justify-content: end;
    gap: 18px;
}

.dv2ft-btm a {
    font-size: 12.6px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 18.9px;
    color: #fff;
}

.footer-bottom {
    padding: 20px 0px;
    position: relative;
    padding-top: 0;
    text-align: center;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    width: 83%;
    /* background: #00000045; */
    height: 1px;
    top: 0;
    left: 9%;
}


/*Footer End*/

.carousel-item video {
    width: 100%;
    height: 760px;
    object-position: right;
    transform: scale(1.9) translateX(2vw);
    min-height: 100vh;
}

.how-does video {
    width: 100%;
    /* height: 620px; */
    border-radius: 20px;
}

.marquee-text h2 {
    font-size: 22px;
    margin-bottom: 0px;
    color: #fff;
    position: relative;
    text-transform: capitalize;
    text-align: center;
}

.marquee-text h2:before {
    content: '';
    position: absolute;
    background: #0e6b43;
    width: 5px;
    height: 4px;
    top: 31px;
    left: -22px;
    border-radius: 11px;
}

section.namesslid {
    background: #000;
    transform: rotate(-4deg);
    margin-bottom: -160px;
}

.brand-slider .slick-active {
    opacity: 1.5;
}

.brand-slider .slick-slide {
    opacity: 1.2;
}


/* Privacy Ploicy  */

section.privacy-policy {
    text-align: center;
    padding: 80px 0 60px;
    background-image: url(../images/login-bg.png);
    background-size: cover;
    display: flex;
    align-items: center;
}

section.privacy-policy p {
    font-size: 14px;
    margin-bottom: 30px;
}

section.privacy-policy h2 {
    font-size: 49px;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 700;
    line-height: 67.13px;
    color: #000;
    margin-bottom: 40px;
}

section.privacy-policy h2 span {
    color: #317256;
    border: 1px solid #31725645;
    padding: 1px 16px;
    border-radius: 71px;
    background: #BCF6DD;
}


/* end  */

@media only screen and (min-width: 1601px) and (max-width: 1920px) {
    video#sdsd {
        object-position: 540px 30px;
        transform: scale(1.7);
    }
}

@media only screen and (min-width: 1366px) and (max-width: 1499px) {
    .text-digital-trans p {
        margin-left: 150px;
    }
    .droopdwon ul {
        display: flex;
        align-items: center;
        margin: 0;
    }
    ul#menu li a,
    .droopdwon ul li a {
        padding: 10px 25px;
    }
    a.btn-2 {
        padding: 16px 32px !important;
        width: auto !important;
    }
    .carousel-item video {
        object-position: 390px 0px;
    }
    .marquee-text h2 {
        font-size: 18px;
    }
    .opti-img:before {
        background-size: contain;
        width: 320px;
        top: -60px;
    }
    .distance-text:before {
        bottom: -45px;
    }
    .carousel-item video {
        height: 700px;
        /* background-position: 480px 30px; */
        transform: scale(1.5);
    }
    .marquee-text h2 {
        font-size: 16px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .docu-button a {
        left: 30px;
    }
    .menuSec ul li a {
        padding: 10px 38px;
    }
    .banner_text p {
        font-size: 21px;
        width: 99%;
    }
    .banner_text h1 {
        font-size: 37px;
    }
    .banner_text {
        margin-left: 94px;
    }
    .carousel-item video {
        object-position: 370px -10px;
        transform: scale(1.3);
        height: 640px;
    }
    .marquee-text h2 {
        font-size: 14px;
    }
    .digital-trans-img:before {
        width: 66%;
        left: 34%;
    }
    .text-digital-trans {
        padding-left: 95px;
    }
    .digiral-trans-a {
        text-align: start;
        padding-left: 95px;
    }
    .text-digital-trans h2 {
        margin-left: 0;
        text-align: start;
    }
    .text-digital-trans p {
        font-size: 17px;
        padding: 35px 0px;
        margin-left: 0;
    }
    .reducingdvhowdoes:before {
        right: -29px;
    }
    .elemintingdvhowdoes:before {
        width: 460px;
        right: -47px;
    }
    .maindvhowdoes:before {
        width: 341px;
        left: -50px;
    }
    .reducingdvhowdoes:before {
        width: 341px;
        right: -50px;
    }
    .dvtextopti h2 {
        font-size: 27px;
    }
    .documentation:before {
        left: -78px;
    }
    .dvtextopti {
        padding: 0px 0px 0px 0px;
    }
    .dvtextopti:before {
        right: -42px;
    }
    .dv1international h3:after {
        width: 31%;
        left: 31%;
    }
    .distance {
        margin-bottom: -1px;
    }
    ul.ul1ft {
        display: flex;
        gap: 75px;
    }
    .footer-bottom:before {
        width: 96%;
        height: 1px;
        left: 3%;
    }
    .distance-text p {
        font-size: 19px;
    }
    .how-does:before {
        width: 92%;
    }
    .docu-button a:before {
        left: -35px;
    }
}

@media only screen and (min-width: 1021px) and (max-width: 1199px) {
    .footer {
        margin-top: 40px;
    }
    .distance-text:before {
        bottom: -47px;
    }
    .optimized {
        margin-top: 15%;
    }
    .opti-img:after {
        left: 0;
        background: #bcf6dd;
        border-radius: 50%;
    }
    .docu-button a {
        left: 0;
        right: -70px;
        margin: 0 auto;
    }
    li.step1 {
        width: 34%;
    }
    li.step3 {
        width: 34%;
    }
    li.step3 .text-automate {
        left: 15px;
    }
    .digiral-trans-a {
        text-align: start;
    }
    .text-digital-trans h2 {
        margin-left: 0;
        text-align: start;
    }
    .digital-trans {
        padding-top: 40px;
    }
    .digital-trans-img {
        z-index: -1;
    }
    .banner_text p {
        font-size: 21px;
        width: 99%;
    }
    .banner_text h1 {
        font-size: 37px;
    }
    .banner_text {
        margin-left: 44px;
    }
    .carousel-item video {
        object-position: 250px 0px;
        transform: scale(1.7);
        height: 550px;
    }
    .marquee-text h2 {
        font-size: 14px;
    }
    .digital-trans-img:before {
        width: 66%;
        left: 34%;
    }
    .text-digital-trans p {
        font-size: 17px;
        padding: 35px 0px;
        margin-left: 0;
    }
    .reducingdvhowdoes:before {
        right: -29px;
    }
    .elemintingdvhowdoes:before {
        width: 460px;
        right: -47px;
    }
    .maindvhowdoes:before {
        width: 341px;
        left: -50px;
    }
    .reducingdvhowdoes:before {
        width: 341px;
        right: -50px;
    }
    .dvtextopti h2 {
        font-size: 27px;
    }
    .documentation:before {
        left: 0;
        background-position: -243px 0px;
    }
    .dvtextopti {
        padding: 0px 0px 0px 0px;
    }
    .dvtextopti:before {
        right: -42px;
    }
    .dv1international h3:after {
        width: 40%;
        left: 31%;
    }
    .distance {
        margin-bottom: -1px;
    }
    ul.ul1ft {
        display: flex;
        gap: 35px;
    }
    .footer-bottom:before {
        width: 96%;
        height: 1px;
        left: 3%;
    }
    .distance-text p {
        font-size: 19px;
    }
    .how-does:before {
        width: 92%;
    }
    .docu-button a:before {
        left: -53px;
        object-fit: contain;
    }
    .menuSec ul li a {
        padding: 10px 22px;
    }
    a.btn-2 {
        font-size: 18px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1020px) {
    .distance-text:before {
        bottom: -47px;
    }
    .optimized {
        margin-top: 15%;
    }
    .opti-img:after {
        left: 0;
        background: #bcf6dd;
        border-radius: 50%;
    }
    .docu-button a {
        left: 0;
        right: -60px;
        margin: 0 auto;
    }
    li.step1 {
        width: 34%;
    }
    li.step3 {
        width: 34%;
    }
    li.step3 .text-automate {
        left: 15px;
    }
    .text-digital-trans h2 {
        margin-left: 0;
    }
    .digital-trans {
        padding-top: 40px;
    }
    .digital-trans-img {
        z-index: -1;
    }
    .banner_text p {
        font-size: 21px;
        width: 99%;
    }
    .banner_text h1 {
        font-size: 37px;
    }
    .banner_text {
        margin-left: 44px;
    }
    .carousel-item video {
        object-position: 250px 0px;
        transform: scale(1.7);
        height: 550px;
    }
    .marquee-text h2 {
        font-size: 14px;
    }
    .digital-trans-img:before {
        width: 66%;
        left: 34%;
    }
    .text-digital-trans p {
        font-size: 17px;
        padding: 35px 0px;
        margin-left: 30px;
    }
    .reducingdvhowdoes:before {
        right: -29px;
    }
    .elemintingdvhowdoes:before {
        width: 460px;
        right: -47px;
    }
    .maindvhowdoes:before {
        width: 341px;
        left: -50px;
    }
    .reducingdvhowdoes:before {
        width: 341px;
        right: -50px;
    }
    .dvtextopti h2 {
        font-size: 27px;
    }
    .documentation:before {
        left: 0;
        background-position: -243px 0px;
    }
    .dvtextopti {
        padding: 0px 0px 0px 0px;
    }
    .dvtextopti:before {
        right: -42px;
    }
    .dv1international h3:after {
        width: 50%;
        left: 31%;
    }
    .distance {
        margin-bottom: -1px;
    }
    ul.ul1ft {
        display: flex;
        gap: 35px;
        margin-left: 52px;
    }
    .footer-bottom:before {
        width: 96%;
        height: 1px;
        left: 3%;
    }
    .distance-text p {
        font-size: 19px;
    }
    .how-does:before {
        width: 92%;
    }
    .docu-button a:before {
        left: -53px;
        object-fit: contain;
    }
    .menuSec ul li a {
        padding: 10px 22px;
    }
    a.btn-2 {
        font-size: 18px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dv1international h3:after {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 50%;
        object-fit: contain;
    }
    .dv1ft-btm p {
        font-size: 16px !important;
    }
    .footer {
        margin-top: 90px;
    }
    .bottomtexthowit p {
        padding-top: 20px;
    }
    .dvtextopti {
        padding-left: 0;
    }
    .opti-img:before {
        height: 160px;
        background-size: contain;
        top: -70px;
    }
    .opti-img:after {
        background: #97cfb7;
        border-radius: 50%;
        height: 350px;
        width: 350px;
        left: 20px;
    }
    .dvtextopti h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .dvtextopti p {
        font-size: 18px;
        width: 100%;
    }
    .distance-text.wow.fadeInUp {
        padding: 0;
    }
    .distance-text h3 {
        font-size: 30px;
    }
    .distance-text:before {
        bottom: -40px;
        height: 790px;
        background-size: cover;
        left: -30px;
    }
    .distance-text p {
        font-size: 16px;
        line-height: 1.6;
    }
    .distance .row {
        align-items: center;
    }
    .dv1international h3:before {
        left: 0;
        width: 100%;
        top: 0;
    }
    ul.ul1ft {
        gap: 5px;
        text-align: center;
    }
    ul.ul1ft li a {
        font-size: 12px;
        text-align: left;
    }
    .bottomtexthowit p {
        padding-top: 20px;
        font-size: 15px;
    }
    .dvtextopti {
        padding-left: 0;
    }
    .opti-img:before {
        height: 160px;
        background-size: contain;
        top: -70px;
    }
    .opti-img:after {
        background: #97cfb7;
        border-radius: 50%;
        height: 350px;
        width: 350px;
        left: 20px;
    }
    .dvtextopti h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .dvtextopti p {
        font-size: 18px;
        width: 100%;
    }
    ul.how-work-list {
        display: block !important;
    }
    ul.how-work-list li {
        display: inline-block;
    }
    li.step2 {
        width: 49%;
    }
    li.step3 {
        width: 50%;
        display: flex !important;
        justify-content: center;
        margin: 0 auto;
        margin-top: 30px;
    }
    li.step1 {
        width: 49%;
    }
    .carousel-item video {
        min-height: 530px;
        object-position: 190px 60px;
        transform: scale(1.5);
        height: 530px;
    }
    .banner_text h1 {
        font-size: 40px;
        line-height: 60px;
    }
    .banner_text p {
        font-size: 18px;
    }
    section.namesslid {
        margin: 0;
        padding: 15px 0px;
    }
    .text-digital-trans h2 {
        margin-left: 0;
        font-size: 26px;
        text-align: start;
    }
    .dv1international h3:after {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 50%;
        object-fit: contain;
    }
    .digiral-trans-a {
        margin-left: -35px;
    }
    .text-digital-trans p {
        padding: 0;
        margin-left: 0;
        margin-top: 15px;
        font-size: 16px;
    }
    a.btn-1 {
        font-size: 13px;
        margin-left: 0;
    }
    .digiral-trans-a {
        margin-left: 0 !important;
        margin-top: 40px;
        text-align: start;
    }
    .digital-trans-img {
        top: -120px;
    }
    .text-digital-trans {
        margin-top: 0;
    }
    .dv1docu h3 {
        font-size: 18px;
        line-height: 1.2;
    }
    img.proc-shape {
        bottom: -220px;
    }
    .docu-button a {
        left: 30px;
        right: 0;
        margin: 0 auto;
        top: 70px;
    }
    .docu-button a:before {
        left: -33px;
        display: none;
    }
    .menuSec ul li a {
        padding: 10px 1px;
        font-size: 14px;
    }
    .banner_text {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    section.namesslid {
        margin: 0;
    }
    .banner_text p {
        font-size: 12px;
        line-height: 19px;
        width: 100%;
        margin-bottom: 21px;
    }
    .banner_text h1 {
        font-size: 30px;
        line-height: 1.6;
        background: #fff;
    }
    a.btn-1 {
        border: 1px solid #317256;
        padding: 7.52px;
        font-size: 13.52px;
    }
    .carousel-inner {
        padding-top: 150px;
    }
    .banner_text {
        margin-left: 0px;
        margin-top: 50px;
    }
    .text-digital-trans p {
        font-size: 13px;
        line-height: 22px;
        padding: 20px 0px;
        margin-left: 0;
    }
    .digiral-trans-a {
        text-align: left;
        margin-left: 0px;
    }
    .text-digital-trans {
        text-align: left;
        margin-top: 0;
    }
    .text-digital-trans h2 {
        font-size: 24.14px;
        line-height: 32.77px;
        margin-left: 0px;
        margin-top: 10%;
    }
    .digital-trans-img:before {
        width: 300px;
        height: 300px;
        top: 45px;
        left: 45px;
        background: #7ebea2;
        border-radius: 50%;
    }
    .top-text.how.does h2 {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .top-text.how.does p {
        font-size: 14px;
        line-height: 1.4;
    }
    .text-automate p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 4px;
    }
    .maindvhowdoes:before {
        width: 291px;
        height: 330px;
        top: -28px;
        left: 3px;
        background-size: contain;
    }
    .text-automate h4 {
        font-size: 19px;
        margin-bottom: 10px;
        margin-top: 10px;
        line-height: 1.3 !important;
    }
    .text-automate {
        margin-bottom: 20px;
    }
    .reducingdvhowdoes:before {
        width: 271px;
        height: 250px;
        top: -3px;
        right: 0px;
        left: -10px;
        background-size: cover;
    }
    .elemintingdvhowdoes:before {
        width: 291px;
        height: 310px;
        top: 15px;
        right: 0px;
        left: -14px;
        background-size: contain;
    }
    .text-automate img {
        padding: 9px 12px;
        margin-bottom: 0px;
        margin-top: 31px;
    }
    .elemintingdvhowdoes .text-automate {
        margin-left: 0;
    }
    .bottomtexthowit p {
        font-size: 11px;
        padding: 20px 0px 20px;
    }
    .toptext-docu p {
        font-size: 12px;
        margin-bottom: 35px;
    }
    .dv1docu h3 {
        font-size: 16px;
        margin-top: 13px;
        margin-bottom: 11px;
    }
    .digital-trans-img {
        top: -36px;
        right: 0;
        margin-top: 20px;
    }
    .digital-trans {
        position: relative;
    }
    img.proc-shape {
        bottom: -98px;
        left: -18px;
        width: 100%;
    }
    .docu-button a {
        font-size: 16px;
        width: 145px;
        padding: 20px 0px;
        top: 11px;
        height: 50px;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .docu-button a:before {
        width: 182px;
        height: 301px;
        top: -73px;
        left: -5px;
        background-size: contain;
        display: none;
    }
    .opti-img:after {
        width: 81%;
        height: 229px;
        left: 5px;
        top: -34px;
        background-size: contain;
    }
    .opti-img:before {
        width: 67%;
        height: 140px;
        left: 13px;
        top: -39px;
        background-size: contain;
    }
    .dvtextopti h2 {
        font-size: 21px;
        line-height: 31px;
        margin-bottom: 10px;
    }
    .dvtextopti p {
        font-size: 14px;
        width: 100%;
    }
    .dvtextopti {
        padding: 0px 0px 0px 0px;
        position: relative;
        margin-top: 50px;
    }
    .distance {
        padding: 0px 0px 100px;
    }
    .distance-text {
        padding: 0px 0px;
    }
    .distance-text h3 {
        font-size: 25px;
        line-height: 11.11px;
    }
    .distance-text:before {
        width: 100%;
        height: 511px;
        left: -9px;
        bottom: -70px;
        background-size: cover;
        display: none;
    }
    .distance-text p {
        font-size: 11px;
        line-height: 22px;
    }
    .distance-img.wow.fadeInDown {
        margin-top: 60px;
    }
    .dv1international h3:after {
        width: 42%;
        height: 230px;
        top: -24px;
        left: 0;
        right: 0;
        background-size: contain;
        margin: 0 auto;
    }
    .dv1international h3:before {
        width: 100%;
        height: 180px;
        left: 0px;
        top: -44px;
    }
    .dv1international h3 {
        font-size: 20px;
        line-height: 28px;
        padding: 6% 0px;
    }
    .international:before {
        height: 300px;
        background-size: contain;
        background: unset;
    }
    .dv1international {
        margin-top: 90px;
    }
    ul.ul1ft {
        display: flex;
        gap: 5px;
        margin-left: 0px;
        margin-top: 0px;
        justify-content: center;
        flex-direction: column;
    }
    ul.ul1ft li a {
        font-size: 13px;
    }
    ul.ul2ft {
        display: flex;
        justify-content: center;
        gap: 11px;
        margin-right: 0px;
    }
    .footer {
        /* padding: 0px 0px 0px; */
        margin-top: 50px;
    }
    .dv2ft-btm {
        gap: 18px;
        justify-content: center;
    }
    .dv1ft-btm p {
        text-align: center;
        font-size: 14px !important;
    }
    .dvtextopti:before {
        left: 12px;
        top: -31px;
    }
    .documentation:before {
        width: 79%;
    }
    .how-does:before {
        display: none;
    }
    .menuSec ul li:last-child a {
        padding: 10px 20px;
    }
    .menuSec ul li a {
        padding: 0;
    }
    .carousel-item video {
        object-position: 2px -40px;
        height: 350px;
        min-height:auto;
    }
    ul.how-work-list {
        display: block !important;
    }
    ul.how-work-list li {
        width: 100%;
        margin-bottom: 30px;
    }
    .droopdwon ul {
        justify-content: center;
        display: flex;
        gap: 30px;
        align-items: center;
    }
    .droopdwon {
        float: inherit;
        margin-top: 20px;
    }
}

html {
    overflow-x: hidden !important;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

@media only screen and (min-width: 426px) and (max-width: 519px) {
    .carousel-item video {
        object-position: 5px -60px !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    section.privacy-policy h2 {
        font-size: 30px;
    }
    section.privacy-policy {
        text-align: center;
    }
    section.privacy-policy p {
        font-size: 12px;
    }
    .terms-trade .form-group label br {
        display: none;
    }
    .slicknav_nav li a h6 span {
        display: block;
        font-size: 9px;
        line-height: 1;
    }
    .user-profile li a {
        padding: 0px 0 !important;
    }
    .shment-wrap .table-space {
        width: 160px;
        padding-top: 10px;
    }
    .shment-wrap.shp-detail {
        padding: 0;
    }
    .net-earning {
        width: 100%;
    }
    .steps_changes_new .col {
        flex: 1 0 50%;
    }
    .dynamic-field .delete_btnn {
        right: 10px;
        bottom: 11px;
    }
    section.namesslid {
        margin: 0;
    }
    .banner_text p {
        font-size: 12px;
        line-height: 19px;
        width: 100%;
        margin-bottom: 21px;
    }
    .banner_text h1 {
        font-size: 20px;
        line-height: 36.13px;
    }
    a.btn-1 {
        border: 1px solid #317256;
        padding: 7.52px;
        font-size: 13.52px;
    }
    .carousel-inner {
        padding-top: 150px;
    }
    .banner_text {
        margin-left: 0px;
        margin-top: 50px;
    }
    .text-digital-trans p {
        font-size: 13px;
        line-height: 22px;
        padding: 20px 0px;
        margin-left: 0;
    }
    .digiral-trans-a {
        text-align: left;
        margin-left: 0px;
    }
    .text-digital-trans {
        text-align: left;
        margin-top: 0;
        margin-left: 0;
    }
    .text-digital-trans h2 {
        font-size: 24.14px;
        line-height: 32.77px;
        margin-left: 0px;
        margin-top: 10%;
    }
    .digital-trans-img:before {
        width: 300px;
        height: 300px;
        top: 42px;
        left: 9px;
        background: #7ebea2;
        border-radius: 50%;
    }
    .top-text.how.does h2 {
        font-size: 25.49px;
        line-height: 29.39px;
    }
    .top-text.how.does p {
        font-size: 10.1px;
        line-height: 17.7px;
    }
    .text-automate p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 3px;
    }
    .maindvhowdoes:before {
        width: 291px;
        height: 330px;
        top: -28px;
        left: 3px;
        background-size: contain;
    }
    .text-automate h4 {
        font-size: 16px;
        margin: 13px 0;
        line-height: 1.2 !important;
    }
    .text-automate {
        margin-bottom: 20px;
        left: 0 !important;!i;!;
    }
    .reducingdvhowdoes:before {
        width: 271px;
        height: 250px;
        top: -3px;
        right: 0px;
        left: -10px;
        background-size: cover;
    }
    .elemintingdvhowdoes:before {
        width: 291px;
        height: 310px;
        top: 15px;
        right: 0px;
        left: -14px;
        background-size: contain;
    }
    .text-automate img {
        padding: 9px 12px;
        margin-bottom: 0px;
        margin-top: 0;
    }
    .elemintingdvhowdoes .text-automate {
        margin-left: 0;
        left: 0 !important;
    }
    .bottomtexthowit p {
        font-size: 18px;
        line-height: 1.5;
        padding: 20px 0px 20px;
    }
    .toptext-docu p {
        font-size: 18px;
        margin-bottom: 35px;
        line-height: 1.5;
    }
    .powered-by {
        top: 40% !important;
        transform: translateY(-50%);
    }
    .dv1docu h3 {
        font-size: 16px;
        margin-top: 13px;
        margin-bottom: 11px;
    }
    .digital-trans-img img {
        width: 100%;
    }
    .digital-trans-img {
        top: -36px;
        right: 0;
        margin-top: 20px;
    }
    .digital-trans {
        position: relative;
    }
    img.proc-shape {
        bottom: -98px;
        left: -18px;
        width: 100%;
    }
    .docu-button a {
        font-size: 14px;
        width: 131px;
        padding: 12px 0px;
        top: 34px;
        height: 50px;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .documentation {
    padding-bottom: 40px;
}
    .docu-button a:before {
        width: 182px;
        height: 301px;
        top: -73px;
        left: -5px;
        background-size: contain;
        display: none;
    }
    .opti-img:after {
        width: 81%;
        height: 229px;
        left: 5px;
        top: -34px;
        background-size: contain;
    }
    .opti-img:before {
        width: 67%;
        height: 140px;
        left: 13px;
        top: -39px;
        background-size: contain;
    }
    .dvtextopti h2 {
        font-size: 21px;
        line-height: 31px;
        margin-bottom: 10px;
    }
    .dvtextopti p {
        font-size: 14px;
        width: 100%;
    }
    .dvtextopti {
        padding: 0px 0px 0px 0px;
        position: relative;
        margin-top: 50px;
    }
    .distance {
        padding: 0px 0px 100px;
    }
    .distance-text {
        padding: 0px 0px;
    }
    .distance-text h3 {
        font-size: 24px;
        line-height: 1.2;
    }
    .distance-text:before {
        width: 100%;
        height: 511px;
        left: -9px;
        bottom: -70px;
        background-size: cover;
        display: none;
    }
    .distance-text p {
        font-size: 11px;
        line-height: 22px;
    }
    .distance-img.wow.fadeInDown {
        margin-top: 60px;
    }
    .dv1international h3:after {
        width: 42%;
        height: 230px;
        top: -24px;
        left: 0;
        right: 0;
        background-size: contain;
        margin: 0 auto;
    }
    .dv1international h3:before {
        width: 100%;
        height: 180px;
        left: 0px;
        top: -44px;
    }
    .dv1international h3 {
        font-size: 20px;
        line-height: 28px;
        padding: 6% 0px;
    }
    .international:before {
        height: 300px;
        background-size: contain;
        background: unset;
    }
    .dv1international {
        margin-top: 90px;
    }
    ul.ul1ft {
        display: flex;
        gap: 5px;
        margin-left: 0px;
        margin-top: 0px;
        justify-content: center;
        flex-direction: column;
    }
    ul.ul1ft li a {
        font-size: 13px;
    }
    ul.ul2ft {
        display: flex;
        justify-content: center;
        gap: 11px;
        margin-right: 0px;
    }
    .footer {
        /* padding: 0px 0px 0px; */
        margin-top: 50px;
    }
    .dv2ft-btm {
        gap: 18px;
        justify-content: center;
    }
    .dv1ft-btm p {
        text-align: center;
        font-size: 14px !important;
    }
    .dvtextopti:before {
        left: 12px;
        top: -31px;
    }
    .documentation:before {
        width: 79%;
    }
    .how-does:before {
        display: none;
    }
    .menuSec ul li:last-child a {
        padding: 10px 20px;
    }
    .menuSec ul li a {
        padding: 0;
    }
    .carousel-item video {
        object-position: 2px -40px;
        height: 350px;
        min-height: auto;
    }
    ul.how-work-list {
        display: block !important;
    }
    ul.how-work-list li {
        width: 100%;
        margin-bottom: 30px;
        background: #bcf6dd;
        border-radius: 20px;
        padding: 0 30px;
    }
    .droopdwon ul {
        justify-content: center;
        display: flex;
        gap: 30px;
        align-items: center;
    }
    .droopdwon {
        float: inherit;
        margin-top: 20px;
    }
}

ul.how-work-list {
    display: flex;
}

.dv1ft-btm p {
    color: #fff;
    font-size: 18px;
}


/* step form */

#msform {
    /* text-align: center; */
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    /* background: white; */
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #49ab81;
    outline-width: 0
}

#msform .action-button {
    width: 190px;
    border: 0 none;
    cursor: pointer;
    padding: 3px 3px 3px 30px;
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    font-weight: 500;
}

#msform .skip_anchor {
    width: 190px;
    border: 0 none;
    cursor: pointer;
    padding: 3px 3px 3px 30px;
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    font-weight: 500;
}

#msform .action-button:hover i,
#msform .action-button:focus i {
    margin-right: -15px;
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 25px;
    color: #49ab81;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.purple-text {
    color: #49ab81;
    font-weight: normal
}

#progressbar li p {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
}

#progressbar li:first-child p,
#progressbar li:last-child p {
    margin-bottom: 12px;
}

.steps {
    font-size: 0 !important;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin: 0 auto;
}

#progressbar .active:before {
    background: #49ab81 !important;
    position: relative;
    z-index: 1;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 20%;
    height: 100px;
    float: left;
    position: relative;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

#progressbar .check:before {
    font-family: FontAwesome;
    content: "\f00c";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #49ab81;
    background: #fff;
}

ul#progressbar:before {
    z-index: 0;
    content: '';
    position: absolute;
    width: 86%;
    height: 1px;
    background: #49ab81;
    top: 25px;
}

#msform .action-button i {
    background: #fff;
    color: #000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.5s all;
}

.calc-ship-bdy {
    position: relative;
    padding-bottom: 25px;
}

.calc-ship-bdy:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/banner-bg-grad.png) no-repeat;
    left: 0px;
    bottom: 0;
    z-index: -1;
}

.calc-ship>.container>.row {
    background: #fff;
    padding: 30px 90px;
    box-shadow: 0 12px 20px 0 #0000002e;
    border-radius: 10px;
}


/* step form */


/* upload Image */

.drop-zone,
.drop-zone1,
.drop-zone2,
.drop-zone3,
.drop-zone4,
.drop-zone5,
.drop-zone6,
.drop-zone7,
.drop-zone8,
.drop-zone9 {
    max-width: 100%;
    height: 235.54px;
    border: 2px dashed #1e7c53;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F8F8FF;
    cursor: pointer;
    border-radius: 15px;
    position: relative;
}

.drop-zone>img,
.drop-zone1>img,
.drop-zone2>img,
.drop-zone3>img,
.drop-zone4>img,
.drop-zone5>img,
.drop-zone6>img,
.drop-zone7>img,
.drop-zone8>img,
.drop-zone9>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: none;
}

section.calc-ship {
    height: auto;
}

.drop-zone-content {
    text-align: center;
}

.drop-zone-content h5 {
    margin: 20px 0;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
}

.prod-img-upload button.next {
    background: transparent;
    color: #3fa076;
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid #3fa076 !important;
    margin: 0 0 10px auto !important;
    width: fit-content !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.prod-img-upload a.skip_anchor {
    background: transparent;
    color: #3fa076;
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid #3fa076 !important;
    margin: 0 0 10px auto !important;
    width: fit-content !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.prod-img-cntnt {
    margin-top: 40px;
}

.drop-zone input,
.drop-zone1 input,
.drop-zone2 input,
.drop-zone3 input,
.drop-zone4 input,
.drop-zone5 input,
.drop-zone6 input,
.drop-zone7 input,
.drop-zone8 input,
.drop-zone9 input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}


/* Upload Image */


/* shipment rate */

.fieldset-heading {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: 30px;
}

.fieldset-heading button {
    background: #EDEDED;
    border: 1px solid #43766C;
    color: #43766C;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.fieldset-heading a.prev_anchor {
    background: #EDEDED;
    border: 1px solid #43766C;
    color: #43766C;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.fieldset-heading h2 {
    margin: 0;
    font-size: 25px;
    color: #000;
    font-weight: 600;
}

.calcship-input label {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.calcship-input input,
.calcship-input select {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgb(0 0 0 / 20%);
    background-size: 10px;
}


/* .calcship-input input {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgb(0 0 0 / 20%);
    background-size: 10px;
} */

.select2-container--default .select2-selection--single {
    width: 100%;
    /* padding: 10px 20px; */
    border-radius: 10px !important;
    background: #fff;
    border: 1px solid rgb(0 0 0 / 20%) !important;
    background-size: 10px;
    height: 47px !important;
}


/* span#select2-single1-container {
    height: 47px !important;
    padding: 10px 20px !important;
} */

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 12px;
    right: 5px;
    width: 20px;
}

.select2-selection>span {
    height: 47px !important;
    padding: 10px 20px !important;
}

.calcship-input {
    margin-top: 20px;
}

.calcship-input select {
    background: #fff url('../images/arrow.png') no-repeat 98%;
}

.terms-text {
    display: flex;
    align-items: start;
    gap: 16px;
}

.terms-text input {
    appearance: none;
    width: 25px;
    height: 25px;
    border: 0;
    border-radius: 5px;
    border: 1px solid #c9c9c9df;
}

.terms-text input:checked {
    background: #49ab81 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.terms-text label {
    font-size: 16px;
    font-weight: 500;
    width: 80%;
}

.continue-btn {
    text-align: end;
}

.continue-btn button.next.action-button.theme-btn {
    float: right;
}


/* shipment rate */


/* Submit Document */

.subdoc-item h3 {
    margin: 40px 0 10px;
    h3 {
        font-family: 'Encode Sans Expanded', Sans-Serif;
        font-size: 20px;
        line-height: 30px;
        color: #000000;
        font-weight: 700;
        margin: 0 0 28px;
    }
    ;
    h3 {
        font-family: 'Encode Sans Expanded', Sans-Serif;
        font-size: 20px;
        line-height: 30px;
        color: #000000;
        font-weight: 700;
        margin: 0 0 28px;
    }
    ;
    font-family: 'Encode Sans Expanded',
    Sans-Serif;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    font-weight: 700;
}

.subdoc-ques .radio-btns>span {
    border: 1px solid #49ab81;
    background: transparent;
    padding: 6px 15px;
    border-radius: 10px;
}

.radio-btns {
    position: relative;
}

.radio-btns>input {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.radio-btns>input:checked+span {
    background: #49ab81;
    color: #fff;
}

.subdoc-ques {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.subdoc-ques button:first-child {
    background: #49ab81;
    color: #fff;
}

.subdoc-item .drop-zone1,
.subdoc-item .drop-zone2,
.subdoc-item .drop-zone3,
.subdoc-item .drop-zone4,
.subdoc-item .drop-zone5,
.subdoc-item .drop-zone6 {
    height: 240px;
    margin-top: 20px;
}

.subdoc-item p {
    font-weight: 500;
    font-size: 14px;
}


/* Submit Document */

.ship-det label {
    font-size: 16px;
    font-weight: 500;
    color: #000000CC;
    margin-bottom: 10px;
}


/* ship det */

.ship-det input {
    font-weight: 500;
    width: 100%;
    padding: 20px 20px;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    height: 60px;
}

.weight-select {
    display: flex;
    align-items: center;
    border: 1px solid #DEDEDE;
    padding: 0 10px;
    border-radius: 10px;
}

.weight-select input {
    padding: 0;
    border: 0;
    width: 60%;
}

.weight-select select {
    width: 60% !important;
    padding: 10px !important;
    border: 0 !important;
}

.weight-select {
    display: flex;
    align-items: center;
    border: 1px solid #DEDEDE;
    padding: 0 0 0 10px;
    border-radius: 10px;
}

.weight-select input {
    padding: 0;
    border: 0;
    width: 55%;
}

.ship-det select {
    width: 55%;
    padding: 20px 20px;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    height: 60px;
    background-position: 90%;
    font-weight: 500;
}

.nav-pills .nav-link {
    background: transparent;
    color: #49ab81;
    border: 1px solid #49ab81;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}

.ship-det-main .nav-pills .nav-link.active,
.ship-det-main .nav-pills .show>.nav-link {
    background: #49ab81;
}

.ship-det-main ul#pills-tab {
    gap: 10px;
    margin: 40px 0;
}

.add-pallet a {
    background: #49ab81;
    color: #fff;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    width: 205px;
    margin: 30px auto 0;
}

.add-pallet a i {
    width: 30px;
    height: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #49ab81;
    border-radius: 50%;
}


/* ship det */


/* Carrier det staart*/

.carrier-chkbx-item label {
    font-size: 16px;
    font-weight: 500;
    color: #000000CC;
}

.carrier-chkbx-item input {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50px;
    border: 1px solid #49ab81;
    position: relative;
    cursor: pointer;
}

.carrier-chkbx-item input:checked:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #49ab81;
    top: 3px;
    left: 3px;
    border-radius: 50%;
}

.carrier-chkbx-item {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.from-to-add {
    display: flex;
    /* align-items: end; */
    justify-content: space-between;
}

.fromto-img img {
    width: 100%;
}

.fromto-img {
    position: relative;
}

.fromto-img:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #49ab81;
    border-radius: 50%;
    top: -4px;
    left: -2px;
}

.fromto-img:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #49ab81;
    border-radius: 50%;
    bottom: -4px;
    right: -2px;
}

.from-to-location h4 {
    font-size: 16px;
    line-height: normal;
    margin: 0;
    font-weight: 700;
    color: #000;
}

.from-to-location p {
    font-size: 13px;
    color: #000;
    line-height: normal;
    margin-bottom: 16px;
}

.from-to-add.toaddr .chnge-add {
    margin-top: 20px;
}

.chnge-add a {
    color: #000;
    font-weight: 500;
    font-size: 13px;
}

.from-to-add.toaddr {
    margin-top: -53px;
    padding-right: 12px;
}

.fromto-sec {
    background: #C6FFE7;
    padding: 25px 40px;
    border-radius: 15px;
    margin-top: 15px;
}

.carrier-heading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.carrier-info ul {
    display: block;
    margin: 60px 0 40px;
}

.carrier-info ul li {
    display: inline-block;
    width: 24.5%;
    padding: 8px;
}

.carrier-info ul li:last-child {
    width: 30%;
}

span.crr-info-hd {
    font-size: 13px;
    font-weight: 700;
}

span.crr-info-para {
    font-size: 13px;
    font-weight: 500;
}

.direction-list {
    text-align: center;
}

.direc-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.date-time-direc {
    text-align: center;
}

.direc-info h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    margin: 00;
    color: #000000CC;
}

.date-time-direc p {
    font-size: 13px;
    line-height: normal;
    color: #000000CC;
    font-weight: 500;
    margin-bottom: 5px;
}

.discount-emission p {
    color: #00974F;
    padding: 3px 10px;
    border-radius: 50px;
    background: #c6ffe7;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.discount-emission p span {
    font-size: xx-small;
}

.carrier-price-info {
    background: #fff;
    box-shadow: 0 0 15px 0 #00000047;
    padding: 15px 50px 30px;
    padding-right: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
}

.carrier-price {
    text-align: center;
    position: relative;
    z-index: 1;
}

.carrier-price:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transform: skewX(15deg) scale(2);
    background: #4bad83;
    z-index: -1;
    left: 50%;
}

.price-det a {
    background: #fff;
    color: #000;
    padding: 5px 20px;
    height: 38px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: fit-content;
    margin: auto;
}

.comp-logo {
    margin-top: 15px;
}

.price-det a i {
    background: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    display: none;
}

.price-det a:hover i {
    display: flex;
}

.price-det h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.carrier-like {
    text-align: start;
    margin-bottom: 20px;
}

.pagination li a {
    width: 30px;
    height: 30px;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.pagination {
    gap: 10px;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 10px;
}

.pagination li a {
    color: #000;
    font-weight: 500;
}

.pagination li a:hover {
    color: #49ab81;
    border-color: #49ab81;
}

li.arrow-right,
li.arrow-left {
    background: transparent;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
}

li.arrow-right:hover,
li.arrow-left:hover {
    color: #fff;
    background: #bbbbbb;
}


/* Carrier det end*/


/* Payment method */

.payment-sec-1 {
    background: #f5f5f5;
    padding: 20px 20px;
    border-radius: 15px;
}

.from-add-to .from-to-add.toaddr {
    justify-content: end;
}

.from-add-to .fromto-sec {
    background: transparent !important;
}

.payment-sec-1 .fieldset-heading {
    margin: 0;
}

.coupon {
    border: 2px solid #49ab81;
    border-radius: 10px;
    position: relative;
    padding: 3px;
    background: #fff;
    text-align: center;
}

.coupon input::placeholder {
    color: #000;
    font-weight: 600;
    font-family: Montserrat;
}

.coupon input {
    width: 88%;
    border: 0;
    padding: 10px;
    border-radius: 10px;
    margin: 0 auto;
    text-align: end;
}

button.apply-btn {
    background: transparent;
    border: 0;
    color: #49ab81;
    font-weight: 600;
    position: absolute;
    top: 12px;
    left: 8px;
}

button.coupon-btn {
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    top: 10px;
    right: 9px;
    gap: 2px;
    font-weight: 600;
}

.coupon input:focus {
    border: 0 !important;
}

.charges-applied ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    font-family: Montserrat;
}

.charges-applied ul {
    margin: 0;
    border-top: 1px solid #6774891f;
}

span.applied-name {
    color: #677489;
}

.charges-applied ul:first-child {
    margin-top: 15px;
}

.charges-applied ul.amount-disc li:last-child .applied-name {
    color: #000;
}

.payment-selection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.pay-card-item {
    border: 2px solid #E6E6E6;
    width: 260px;
    height: 100px;
    text-align: start;
    border-radius: 10px;
    padding: 10px;
    transition: 0.5s all;
}

.pay-card-item h4 {
    color: #6D6E78;
    font-size: 14px;
    transition: 0.5s all;
    font-weight: 600;
}

.pay-card-item:hover,
.card-active {
    border-color: #49ab81;
}

.pay-card-item:hover h4,
.card-active h4 {
    color: #49ab81;
}

.card-input input {
    width: 100%;
    padding: 10px;
    border: 2px solid #49ab81;
    border-radius: 10px;
    position: relative;
}

.card-input label {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.card-input {
    margin-top: 24px;
}

.card-inp-iner {
    position: relative;
}

.card-inp-iner img {
    position: absolute;
    top: 15px;
    right: 10px;
}

.card-input input::placeholder {
    color: #bbbbbb;
}

.card-input button.theme-btn {
    border: 0;
    width: 100%;
    margin-top: 20px;
    font-weight: 600;
    padding: 16px;
}

.card-form, .payment-selection {
    padding-left: 40px;
}


/* Payment method */

@media only screen and (min-width: 1661px) and (max-width: 1920px) {}

@media only screen and (min-width: 1480px) and (max-width: 1600px) {
    
.carousel-item video {
  transform: scale(1.9) translateX(6vw);
}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    #progressbar li p {
        font-size: 14px;
    }
    h2 {
        font-size: 28px;
    }
    h5 {
        font-size: 18px;
    }
    h3 {
        font-size: 22px;
    }
    .ship-det select {
        width: 100%;
    }
    .weight-select select {
        width: 75% !important;
        font-size: 12px;
    }
    .direc-info {
        gap: 50px;
    }
    .discount-emission p {
        font-size: 11px;
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .coupon input {
        width: 82%;
    }
    h2 {
        font-size: 25px;
    }
    .drop-zone-content h5 {
        font-size: 15px;
    }
    h5 {
        font-size: 16px;
    }
    h3 {
        font-size: 20px;
    }
    .ship-det select {
        width: 100%;
    }
    .weight-select select {
        width: 100% !important;
        font-size: 12px;
    }
    .direc-info {
        gap: 48px;
    }
    .discount-emission p {
        font-size: 9px;
        width: 100%;
        line-height: normal;
        padding: 8px 0;
    }
    .drop-zone-content p {
        font-size: 14px;
    }
    p {
        font-size: 15px;
    }
    #progressbar li p {
        font-size: 13px;
    }
    .calc-ship>.container>.row {
        padding: 30px 40px;
    }
    .menuSec ul li a {
        font-size: 16px;
    }
    a.login-btn {
        font-size: 16px;
    }
    .theme-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
    .terms-text label {
        width: 90%;
        font-size: 14px;
    }
    .carrier-chkbx-item label {
        font-size: 14px;
    }
    .chnge-add a {
        font-size: 12px;
    }
    .from-to-location p {
        margin: 0;
    }
    .from-to-location {
        margin: 10px 0;
    }
    .fromto-sec {
        padding: 15px 25px;
    }
    .chnge-add {
        padding-bottom: 8px;
    }
    .carrier-info ul li:last-child {
        width: 50%;
    }
    .direc-info h4 {
        font-size: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 991px) {
    .carrier-checkbox .row>* {
        margin: 0;
    }
    .calcship-input {
        margin-top: 0;
    }
    .row.justify-content-between.d-flex.pt-10 {
        padding-top: 10px;
    }
    .card-form {
        padding-left: 0;
    }
    .card-input {
        margin-top: 0;
    }
    fieldset .row>* {
        margin: 10px 0;
    }
    .carrier-info ul {
        margin: 0;
    }
    .calc-ship>.container>.row {
        padding: 20px 0px;
    }
    #progressbar .check:before {
        width: 25px;
        height: 25px;
        margin: auto;
        font-size: 12px;
    }
    #progressbar li p {
        font-size: 9px;
        line-height: 15px;
        display: none;
    }
    #progressbar li {
        width: 32%;
        display: inline-block;
        height: 40px;
    }
    #progressbar {
        display: flex;
        /* flex-wrap: wrap; */
    }
    ul#progressbar:before {
        opacity: 0;
    }
    .fieldset-heading button {
        height: 30px;
        width: 30px;
    }
    .fieldset-heading h2 {
        font-size: 18px;
        line-height: 1.2;
    }
    .coupon input {
        width: 80%;
    }
    h2 {
        font-size: 20px;
        line-height: normal;
    }
    h2.steps {
        display: none;
    }
    .discount-emission p {
        font-size: 8px;
        margin-top: -46px;
    }
    .price-det a:hover {
        padding-left: 15px;
        padding-right: 40px;
    }
    .price-det a {
        padding: 0 29px;
        font-size: 10px;
        position: relative;
    }
    .price-det a i {
        width: 20px;
        height: 20px;
        font-size: 8px;
        position: absolute;
        top: 9px;
        right: 4px;
    }
    .price-det h3 {
        font-size: 14px;
    }
    .date-time-direc p {
        font-size: 12px;
    }
    p {
        font-size: 13px;
        line-height: 23px;
    }
    #msform .action-button {
        font-size: 16px;
        width: 160px;
    }
    #msform .action-button i {
        width: 40px;
        height: 40px;
    }
    h5 {
        font-size: 17px;
    }
    .calcship-input label {
        font-size: 13px;
    }
    .calcship-input input,
    .calcship-input select {
        font-size: 14px;
    }
    .terms-text label {
        font-size: 12px;
        line-height: normal;
    }
    .continue-btn {
        text-align: start;
    }
    .continue-btn button.next.action-button.theme-btn {
        float: left;
    }
    .login-signup {
        justify-content: center;
        margin-top: 20px;
    }
    .header-logo {
        text-align: center;
    }
    div#pills-tabContent .col {
        flex: 1 0 100%;
    }
    .ship-det {
        margin-bottom: 10px;
    }
    .weight-select input {
        width: 60%;
    }
    .ship-det select {
        width: 70% !important;
        padding-left: 9px;
    }
    fieldset .row .col-2 {
    width: 100%;
}
.dynamic-field .delete_btnn {
    width: 50px;
    height: 50px;
    right: 10px;
}
    .from-to-location h4 {
        font-size: 13px;
    }
    .from-to-location p {
        font-size: 10px;
    }
    .chnge-add a {
        font-size: 10px;
    }
    .from-to-add.toaddr {
        margin-top: -35px;
    }
    .chnge-add {
        padding-bottom: 6px;
    }
    .fromto-img img {
        height: 40px;
    }
    .carrier-chkbx-item label {
        font-size: 12px;
    }
    .fromto-sec {
        padding: 20px;
    }
    .carrier-info ul li {
        width: auto;
    }
    .carrier-info ul li:last-child {
        width: auto;
    }
    .carrier-price:before {
        left: 10px;
        top: -29px;
    }
    .carrier-price-info {
        padding: 20px;
    }
    .direc-info {
        gap: 10px;
    }
    .direc-info h4 {
        font-size: 12px;
    }
    .discount-emission {
        margin: 30px 20px;
    }
    .carrier-like {
        /* margin: 0; */
        margin-top: -20px;
    }
    .comp-logo {
        text-align: center;
        margin-bottom: 25px;
    }
    #progressbar li p br {
        display: none;
    }
    #progressbar li {
        width: 25%;
    }
    #progressbar li.current p {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #progressbar .check:before {
        width: 45px;
        height: 45px;
    }
    .login-signup {
        justify-content: end;
        margin-top: 0;
    }
    #progressbar li p {
        display: block;
        margin-top: 10px;
        line-height: 1.2;
    }
    #progressbar li {
        height: 90px;
    }
    #progressbar li p br {
        display: block;
    }
}

.clearfix.text-center button i {
    width: 30px;
    height: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #49ab81;
    border-radius: 50%;
}

.clearfix button {
    background: #49ab81;
    color: #fff;
    padding: 10px 15px;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    width: 230px;
    margin: 30px auto 0;
    border: unset;
    text-transform: capitalize !important;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle, #49AB81 0%, #0E6B43 100%);
    font-size: 16px;
    font-weight: 700;
}

.weight-select input:focus {
    border: unset !important;
}

h6.mbl-top-text {
    display: none;
    color: #49ab81;
    text-align: center;
    font-size: 16px;
    margin: 10px 0 0 0;
    font-weight: 600;
    text-transform: capitalize;
}

.clearfix button:hover {
    background: radial-gradient(circle, #49AB81 0%, #0E6B43 100%);
}

.dynamic-field .row.align-items-end {
    margin-top: 15px;
}

.prod-img-cntnt h2 {
    font-size: 25px;
}

.prod-img-cntnt p {
    margin-bottom: 45px;
}

.fromto-sec.ship-fromoto {
    padding: 25px 0;
}

.coupun-text h4 {
    font-size: 16px;
    font-weight: 500;
}

.drop-zone.drop-zone1 {
    max-width: 100%;
}

.drop-zone-content p {
    font-size: 16px;
    color: #676767;
}

body.calc-ship-bdy {
    overflow: visible;
}

@media only screen and (max-width: 767px) {
    .price-det a:hover {
        padding-left: 20px;
        padding-right: 46px;
    }
    .price-det a {
        padding: 0 40px;
        font-size: 15px;
    }
    h6.mbl-top-text {
        display: block !important;
    }
    .carrier-price:before {
        top: 40px;
    }
    .discount-emission p {
        font-size: 14px;
        margin-top: 0;
    }
}

div#dynamic-field-12 {
    margin-top: 15px;
}

.steps_changes_new .subdoc-ques {
    margin-top: 40px;
    margin-bottom: 30px;
}

.dynamic-field {
    position: relative;
}

.dynamic-field .delete_btnn {
    position: absolute;
    right: 0;
    bottom: 0px;
    border-radius: 5px;
    color: #fff;
    width: 60px;
    height: 60px;
    background: #25835b;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.steps_changes_new {
    margin-top: 20px;
}

/* .steps_changes_new>.row>.dynamic-field:first-child .delete_btnn {
    display: none;
} */


/* Login User */
.eye-button {
    position: absolute;
    right: 0;
    height: 47px;
    border: 0;
    background: transparent;
    width: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.eye-button .fa-eye-slash {
    display: none;
}

.eye-button.acct .fa-eye-slash {
    display: block;
}

.eye-button.acct .fa-eye {
    display: none;
}

section.login-user {
    height: auto;
    background-image: url(../images/login-bg.png);
    background-size: cover;
    display: flex;
    align-items: center;
}

.dropbtn {
    background-color: transparent;
    color: white;
    width: fit-content;
    height: 80px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: space-between;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 60px;
    padding: 0 50px 0 15px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 90%;
    overflow: auto;
    z-index: 1;
    left: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px 20px 0px 20px;
    border-radius: 20px;
    top: 90px;
}

.show {
    display: block;
}

ul.dropbtn li h6 {
    margin: 0;
    margin-left: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
}

ul.dropbtn li h6 span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 15.6px;
    color: #909090;
}

ul.user-profile {
    margin: 0;
}

ul.user-profile li {
    padding-bottom: 20px;
}

ul.user-profile li a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-family: 'Encode Sans Expanded';
    font-weight: 600;
}

header .menuSec li>ul>div>li>a>h6 {
    margin: 0;
    transition: 0.5s;
    font-family: Encode Sans Expanded;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    text-align: left;
    color: #000;
    line-height: 1.5;
}

header .menuSec li>ul>div>li>a>h6>span {
    display: block;
    font-size: 9px;
    color: #6F6C90;
}

.menuSec li:hover>ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

header .menuSec li>ul>div>li>a>h6:hover {
    color: #49AB81;
}


/* Modal Profile detail */

.prf-det-img img {
    width: 143px;
    height: 143px;
    object-fit: cover;
}

.prf-img-abs img {
    width: auto;
    height: auto;
}

.prf-det-img {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.profile-detail {
    text-align: center;
}

.modal-body {
    padding: 80px 0;
}

.upload-prf {
    position: relative;
    text-align: center;
    margin-top: -14px;
}

.upload-prf input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.modal.show .modal-dialog {
    top: 12%;
}

.modal-dialog {
    max-width: 780px;
}

.modal-content {
    border-radius: 18px;
}

.profile-detail form {
    width: 70%;
    margin: 0 auto;
}

.inp-field label {
    display: block;
    text-align: start;
}

.inp-field {
    margin-bottom: 20px;
    position: relative;
}

.inp-field input,
.inp-field select.form-select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #49AB81;
}

.prf-frm {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prf-frm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    margin-bottom: 30px;
}

.prf-frm>div:first-child {
    width: 40%;
}

.prf-frm>div:last-child {
    width: 60%;
}

.inp-field label {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    line-height: 20.3px;
    color: #ACACAC;
    margin-bottom: 6px;
}

input::placeholder {
    font-family: 'Montserrat';
    font-size: 12px;
    font-weight: 600;
    line-height: 17.4px;
    text-align: left;
    color: #000;
}

.prf-det.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn1,
.btn2 {
    font-family: Encode Sans Expanded;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    line-height: 15.6px;
    text-align: center;
    color: #49AB81;
    border: 1px solid #49AB81;
    background: #fff;
    height: 50px;
    padding: 0 20px;
    border-radius: 40px;
    transition: 0.5s;
}

.btn2 {
    background: linear-gradient(90deg, rgba(73, 171, 129, 1) 0%, rgba(14, 107, 67, 1) 83%);
    color: #fff;
    transition: 0.5s;
}

.btn2:hover {
    background: #000;
    border-color: #000;
}

.btn1:hover {
    background: linear-gradient(90deg, rgba(73, 171, 129, 1) 0%, rgba(14, 107, 67, 1) 83%);
    color: #fff;
}


/* end  */


/* Login User end  */


/* Login */

section.login-user.login {
    display: flex;
    height: 100vh;
    align-items: center;
}

.login-wrap {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 80px 60px;
    background: #fff;
    border-radius: 20px;
}

.login-wrap h3 {
    font-family: 'Encode Sans Expanded';
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    text-align: left;
    margin-bottom: 40px;
}

.login-text h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Encode Sans Expanded';
    color: #000;
}

.login-text {
    width: 80%;
    margin: 0 0 0 auto;
}

.frm-tick {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.remember-me h6 {
    font-family: Encode Sans Expanded;
    font-size: 13px;
    font-weight: 500;
    line-height: 15.6px;
    text-align: left;
    margin: 0;
    display: flex;
    align-items: center;
    color: #000;
    gap: 6px;
}

.frgt-pass h5 {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    line-height: 20.3px;
    text-align: left;
    margin: 0;
    color: #49AB81;
}

.login-btn {
    text-align: center;
    margin-top: 20px;
}

.login-btn button.btn2 {
    width: fit-content;
    font-weight: 700;
    padding: 0 40px;
}

.login.digital-container {
    position: relative;
}

.login.digital-container:before {
    position: absolute;
    content: '';
    background-image: url(../images/digital-trans.png);
    background-size: contain;
    width: 40%;
    height: 89%;
    right: 0;
    top: 10%;
    background-repeat: no-repeat;
}


/* end  */


/* register */

.register-wrap {
    padding: 50px 60px;
}


/* end  */


/* Forget Email */

.email-wrap {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    padding: 160px;
    border-radius: 10px;
    width: 90%;
    margin: 0 auto;
}

.email-wrap form {
    width: 45%;
    margin: 0 auto;
}

.email-wrap h6 {
    font-family: 'Encode Sans Expanded';
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin: 0 auto;
    width: 50%;
    margin-bottom: 30px;
}

.login-btn {
    width: 100%;
}

.email-wrap button.btn2 {
    width: 100%;
}


/* end */


/* Resend Email */

.email-wrap.resend-email h6 {
    font-family: Encode Sans Expanded;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    width: 60%;
    line-height: 1.5;
}

.email-wrap.resend-email h6 span,
.email-wrap.resend-email h6 a {
    color: #49AB81;
}

.inp-field img {
    position: absolute;
    right: 7px;
    bottom: 19%;
}


/* end  */


/* Shipment */

.table-space {
    display: flex;
    align-items: center;
    gap: 20px;
    width: auto;
}

.table-space h3 {
    white-space: break-spaces;
    font-size: 14px;
    font-style: normal;
    margin: 0;
    font-weight: 400;
    color: #023047 !important;
    padding-left: 30px;
}


/* .tabs-managment .table>tbody>tr>td:first-child {
    width: 32%;
} */

.tabs-managment .table>tbody>tr>td {
    vertical-align: middle;
    padding: 20px 0;
}

.table>thead>tr,
.table>tbody>tr {
    border-left: 0;
    border-right: 0;
}

.mangment-pen {
    display: flex;
    justify-content: start;
    gap: 10px;
}

.shment-wrap {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    /* padding: 50px 30px; */
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
    padding-bottom: 20px;
}

section.shipment {
    /*height: 90vh;*/
    padding: 80px 0;
    background-image: url(../images/login-bg.png);
    background-size: cover;
    display: flex;
    align-items: center;
}

.shment-wrap h4 {
    font-family: Encode Sans Expanded;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: #000;
    margin: 60px;
}

span.online-prd {
    background: #9AFFCA;
    color: #00974F;
    padding: 14px 19px;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    text-align: center;
    border-radius: 50px;
    display: flex;
    cursor: pointer;
    align-items: center;
    width: fit-content;
}

.mangment-pen a:last-child {
    background: #000;
}

.mangment-pen a:first-child,
.mangment-pen a:last-child {
    background: #49AB81;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.mangment-pen a img {
    width: 21px;
}

.mangment-pen a:last-child {
    background: #D80613;
}

.table>thead>tr>th {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 600;
    line-height: 30.8px;
    text-align: left;
}

.table>tbody>tr:nth-child(odd) {
    background-color: #dffff1;
}

.table>tbody>tr:nth-child(even) {
    background-color: #f6fffb;
}

span.online-prd.online-prd-2 {
    background: #fc6b0073;
    color: #FC6B00;
}

.table-space input {
    width: 15px;
    height: 15px;
}

.table>tbody>tr>td {
    color: #000;
    vertical-align: middle;
}

.table> :not(:last-child)> :last-child>* {
    border: none !important;
}

.table>thead>tr>th:first-child {
    padding-left: 40px;
}


/* end  */


/* Shipment  Confirmed */

.shment-wrap.shp-confirmed {
    text-align: center;
}

.shment-wrap.shp-confirmed h4 {
    text-align: center;
    margin-bottom: 20px;
}

.shment-wrap.shp-confirmed {
    padding: 200px 0;
}


/* end  */


/* Shipment  details*/

section.shipment.shp-detail {
    height: auto;
    padding: 80px 0;
}

.shment-wrap.shp-detail {
    padding: 30px;
}

.shment-wrap.shp-detail h4 {
    margin-left: 0;
}

.shp-add {
    padding-left: 40px;
}

.shp-det-text h5 {
    position: relative;
    font-family: 'Encode Sans Expanded';
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    color: #000;
}

.shp-det-text h5:before {
    position: absolute;
    content: '';
    background: #49AB81;
    left: -30px;
    top: 4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.shp-det-text {
    position: relative;
}

.shp-det-text:before,
.shp-det-stats:before {
    position: absolute;
    content: '';
    background: #49ab81;
    left: -23px;
    top: 6px;
    height: 120%;
    width: 3px;
}

.shp-det-text:last-child:before,
.shp-det-stats:last-child:before {
    display: none;
}

.shp-det-text p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.shment-wrap.shp-detail h3 {
    font-family: 'Encode Sans Expanded';
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.shp-det-stats h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
}

.shp-det-stats {
    position: relative;
    padding-left: 40px;
}

.shp-det-stats h5:before {
    position: absolute;
    content: '\f00c';
    font-family: FontAwesome;
    font-weight: 900;
    font-size: 13px;
    color: #fff;
    left: -40px;
    background: #49AB7B;
    width: 26px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.shp-det-stats:before {
    left: 11px;
    top: 20px;
    height: 140%;
}

.shp-status .shp-det-stats:last-child h5:before {
    background: transparent;
    border: 1px solid #49AB81;
}

.pricing-earning ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 13px;
    font-family: 'Encode Sans Expanded';
    font-size: 13px;
    font-weight: 400;
}

.pricing-earning ul {
    width: 90%;
    border-top: 1px solid #ccc;
}

.net-earning {
    background: #BCF6DD;
    padding: 20px;
    border-radius: 9px;
    width: 85%;
}

.net-earning>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
}

.net-earning p {
    width: 80%;
    margin-top: 20px;
}


/* end  */


/* flag */

.country {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.country .select {
    position: relative;
    padding: 0px 35px 0 20px;
    height: 40px;
    line-height: 40px;
    height: 47px;
    background: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Montserrat';
    font-size: 12px;
    font-weight: 600;
    color: #000;
    border-radius: 10px;
    border: 1px solid #49AB81;
}

.country .select .flagstrap-icon {
    box-sizing: border-box;
    display: inline-block;
    margin-right: 10px;
    width: 16px;
    height: 11px;
    background-image: url("https://raw.githubusercontent.com/blazeworx/flagstrap/master/dist/css/flags.png");
    background-repeat: no-repeat;
    background-color: #e3e5e7;
}

.country .select .flagstrap-icon.flagstrap-ad {
    background-position: -16px 0;
}

.country .select .flagstrap-icon.flagstrap-ae {
    background-position: -32px 0;
}

.country .select .flagstrap-icon.flagstrap-af {
    background-position: -48px 0;
}

.country .select .flagstrap-icon.flagstrap-ag {
    background-position: -64px 0;
}

.country .select .flagstrap-icon.flagstrap-ai {
    background-position: -80px 0;
}

.country .select .flagstrap-icon.flagstrap-al {
    background-position: -96px 0;
}

.country .select .flagstrap-icon.flagstrap-am {
    background-position: -112px 0;
}

.country .select .flagstrap-icon.flagstrap-an {
    background-position: -128px 0;
}

.country .select .flagstrap-icon.flagstrap-ao {
    background-position: -144px 0;
}

.country .select .flagstrap-icon.flagstrap-ar {
    background-position: -160px 0;
}

.country .select .flagstrap-icon.flagstrap-as {
    background-position: -176px 0;
}

.country .select .flagstrap-icon.flagstrap-at {
    background-position: -192px 0;
}

.country .select .flagstrap-icon.flagstrap-au {
    background-position: -208px 0;
}

.country .select .flagstrap-icon.flagstrap-aw {
    background-position: -224px 0;
}

.country .select .flagstrap-icon.flagstrap-az {
    background-position: -240px 0;
}

.country .select .flagstrap-icon.flagstrap-ba {
    background-position: 0 -11px;
}

.country .select .flagstrap-icon.flagstrap-bb {
    background-position: -16px -11px;
}

.country .select .flagstrap-icon.flagstrap-bd {
    background-position: -32px -11px;
}

.country .select .flagstrap-icon.flagstrap-be {
    background-position: -48px -11px;
}

.country .select .flagstrap-icon.flagstrap-bf {
    background-position: -64px -11px;
}

.country .select .flagstrap-icon.flagstrap-bg {
    background-position: -80px -11px;
}

.country .select .flagstrap-icon.flagstrap-bh {
    background-position: -96px -11px;
}

.country .select .flagstrap-icon.flagstrap-bi {
    background-position: -112px -11px;
}

.country .select .flagstrap-icon.flagstrap-bj {
    background-position: -128px -11px;
}

.country .select .flagstrap-icon.flagstrap-bm {
    background-position: -144px -11px;
}

.country .select .flagstrap-icon.flagstrap-bn {
    background-position: -160px -11px;
}

.country .select .flagstrap-icon.flagstrap-bo {
    background-position: -176px -11px;
}

.country .select .flagstrap-icon.flagstrap-br {
    background-position: -192px -11px;
}

.country .select .flagstrap-icon.flagstrap-bs {
    background-position: -208px -11px;
}

.country .select .flagstrap-icon.flagstrap-bt {
    background-position: -224px -11px;
}

.country .select .flagstrap-icon.flagstrap-bv {
    background-position: -240px -11px;
}

.country .select .flagstrap-icon.flagstrap-bw {
    background-position: 0 -22px;
}

.country .select .flagstrap-icon.flagstrap-by {
    background-position: -16px -22px;
}

.country .select .flagstrap-icon.flagstrap-bz {
    background-position: -32px -22px;
}

.country .select .flagstrap-icon.flagstrap-ca {
    background-position: -48px -22px;
}

.country .select .flagstrap-icon.flagstrap-catalonia {
    background-position: -64px -22px;
}

.country .select .flagstrap-icon.flagstrap-cd {
    background-position: -80px -22px;
}

.country .select .flagstrap-icon.flagstrap-cf {
    background-position: -96px -22px;
}

.country .select .flagstrap-icon.flagstrap-cg {
    background-position: -112px -22px;
}

.country .select .flagstrap-icon.flagstrap-ch {
    background-position: -128px -22px;
}

.country .select .flagstrap-icon.flagstrap-ci {
    background-position: -144px -22px;
}

.country .select .flagstrap-icon.flagstrap-ck {
    background-position: -160px -22px;
}

.country .select .flagstrap-icon.flagstrap-cl {
    background-position: -176px -22px;
}

.country .select .flagstrap-icon.flagstrap-cm {
    background-position: -192px -22px;
}

.country .select .flagstrap-icon.flagstrap-cn {
    background-position: -208px -22px;
}

.country .select .flagstrap-icon.flagstrap-co {
    background-position: -224px -22px;
}

.country .select .flagstrap-icon.flagstrap-cr {
    background-position: -240px -22px;
}

.country .select .flagstrap-icon.flagstrap-cu {
    background-position: 0 -33px;
}

.country .select .flagstrap-icon.flagstrap-cv {
    background-position: -16px -33px;
}

.country .select .flagstrap-icon.flagstrap-cw {
    background-position: -32px -33px;
}

.country .select .flagstrap-icon.flagstrap-cy {
    background-position: -48px -33px;
}

.country .select .flagstrap-icon.flagstrap-cz {
    background-position: -64px -33px;
}

.country .select .flagstrap-icon.flagstrap-de {
    background-position: -80px -33px;
}

.country .select .flagstrap-icon.flagstrap-dj {
    background-position: -96px -33px;
}

.country .select .flagstrap-icon.flagstrap-dk {
    background-position: -112px -33px;
}

.country .select .flagstrap-icon.flagstrap-dm {
    background-position: -128px -33px;
}

.country .select .flagstrap-icon.flagstrap-do {
    background-position: -144px -33px;
}

.country .select .flagstrap-icon.flagstrap-dz {
    background-position: -160px -33px;
}

.country .select .flagstrap-icon.flagstrap-ec {
    background-position: -176px -33px;
}

.country .select .flagstrap-icon.flagstrap-ee {
    background-position: -192px -33px;
}

.country .select .flagstrap-icon.flagstrap-eg {
    background-position: -208px -33px;
}

.country .select .flagstrap-icon.flagstrap-eh {
    background-position: -224px -33px;
}

.country .select .flagstrap-icon.flagstrap-england {
    background-position: -240px -33px;
}

.country .select .flagstrap-icon.flagstrap-er {
    background-position: 0 -44px;
}

.country .select .flagstrap-icon.flagstrap-es {
    background-position: -16px -44px;
}

.country .select .flagstrap-icon.flagstrap-et {
    background-position: -32px -44px;
}

.country .select .flagstrap-icon.flagstrap-eu {
    background-position: -48px -44px;
}

.country .select .flagstrap-icon.flagstrap-fi {
    background-position: -64px -44px;
}

.country .select .flagstrap-icon.flagstrap-fj {
    background-position: -80px -44px;
}

.country .select .flagstrap-icon.flagstrap-fk {
    background-position: -96px -44px;
}

.country .select .flagstrap-icon.flagstrap-fm {
    background-position: -112px -44px;
}

.country .select .flagstrap-icon.flagstrap-fo {
    background-position: -128px -44px;
}

.country .select .flagstrap-icon.flagstrap-fr {
    background-position: -144px -44px;
}

.country .select .flagstrap-icon.flagstrap-ga {
    background-position: -160px -44px;
}

.country .select .flagstrap-icon.flagstrap-gb {
    background-position: -176px -44px;
}

.country .select .flagstrap-icon.flagstrap-gd {
    background-position: -192px -44px;
}

.country .select .flagstrap-icon.flagstrap-ge {
    background-position: -208px -44px;
}

.country .select .flagstrap-icon.flagstrap-gf {
    background-position: -224px -44px;
}

.country .select .flagstrap-icon.flagstrap-gg {
    background-position: -240px -44px;
}

.country .select .flagstrap-icon.flagstrap-gh {
    background-position: 0 -55px;
}

.country .select .flagstrap-icon.flagstrap-gi {
    background-position: -16px -55px;
}

.country .select .flagstrap-icon.flagstrap-gl {
    background-position: -32px -55px;
}

.country .select .flagstrap-icon.flagstrap-gm {
    background-position: -48px -55px;
}

.country .select .flagstrap-icon.flagstrap-gn {
    background-position: -64px -55px;
}

.country .select .flagstrap-icon.flagstrap-gp {
    background-position: -80px -55px;
}

.country .select .flagstrap-icon.flagstrap-gq {
    background-position: -96px -55px;
}

.country .select .flagstrap-icon.flagstrap-gr {
    background-position: -112px -55px;
}

.country .select .flagstrap-icon.flagstrap-gs {
    background-position: -128px -55px;
}

.country .select .flagstrap-icon.flagstrap-gt {
    background-position: -144px -55px;
}

.country .select .flagstrap-icon.flagstrap-gu {
    background-position: -160px -55px;
}

.country .select .flagstrap-icon.flagstrap-gw {
    background-position: -176px -55px;
}

.country .select .flagstrap-icon.flagstrap-gy {
    background-position: -192px -55px;
}

.country .select .flagstrap-icon.flagstrap-hk {
    background-position: -208px -55px;
}

.country .select .flagstrap-icon.flagstrap-hm {
    background-position: -224px -55px;
}

.country .select .flagstrap-icon.flagstrap-hn {
    background-position: -240px -55px;
}

.country .select .flagstrap-icon.flagstrap-hr {
    background-position: 0 -66px;
}

.country .select .flagstrap-icon.flagstrap-ht {
    background-position: -16px -66px;
}

.country .select .flagstrap-icon.flagstrap-hu {
    background-position: -32px -66px;
}

.country .select .flagstrap-icon.flagstrap-ic {
    background-position: -48px -66px;
}

.country .select .flagstrap-icon.flagstrap-id {
    background-position: -64px -66px;
}

.country .select .flagstrap-icon.flagstrap-ie {
    background-position: -80px -66px;
}

.country .select .flagstrap-icon.flagstrap-il {
    background-position: -96px -66px;
}

.country .select .flagstrap-icon.flagstrap-im {
    background-position: -112px -66px;
}

.country .select .flagstrap-icon.flagstrap-in {
    background-position: -128px -66px;
}

.country .select .flagstrap-icon.flagstrap-io {
    background-position: -144px -66px;
}

.country .select .flagstrap-icon.flagstrap-iq {
    background-position: -160px -66px;
}

.country .select .flagstrap-icon.flagstrap-ir {
    background-position: -176px -66px;
}

.country .select .flagstrap-icon.flagstrap-is {
    background-position: -192px -66px;
}

.country .select .flagstrap-icon.flagstrap-it {
    background-position: -208px -66px;
}

.country .select .flagstrap-icon.flagstrap-je {
    background-position: -224px -66px;
}

.country .select .flagstrap-icon.flagstrap-jm {
    background-position: -240px -66px;
}

.country .select .flagstrap-icon.flagstrap-jo {
    background-position: 0 -77px;
}

.country .select .flagstrap-icon.flagstrap-jp {
    background-position: -16px -77px;
}

.country .select .flagstrap-icon.flagstrap-ke {
    background-position: -32px -77px;
}

.country .select .flagstrap-icon.flagstrap-kg {
    background-position: -48px -77px;
}

.country .select .flagstrap-icon.flagstrap-kh {
    background-position: -64px -77px;
}

.country .select .flagstrap-icon.flagstrap-ki {
    background-position: -80px -77px;
}

.country .select .flagstrap-icon.flagstrap-km {
    background-position: -96px -77px;
}

.country .select .flagstrap-icon.flagstrap-kn {
    background-position: -112px -77px;
}

.country .select .flagstrap-icon.flagstrap-kp {
    background-position: -128px -77px;
}

.country .select .flagstrap-icon.flagstrap-kr {
    background-position: -144px -77px;
}

.country .select .flagstrap-icon.flagstrap-kurdistan {
    background-position: -160px -77px;
}

.country .select .flagstrap-icon.flagstrap-kw {
    background-position: -176px -77px;
}

.country .select .flagstrap-icon.flagstrap-ky {
    background-position: -192px -77px;
}

.country .select .flagstrap-icon.flagstrap-kz {
    background-position: -208px -77px;
}

.country .select .flagstrap-icon.flagstrap-la {
    background-position: -224px -77px;
}

.country .select .flagstrap-icon.flagstrap-lb {
    background-position: -240px -77px;
}

.country .select .flagstrap-icon.flagstrap-lc {
    background-position: 0 -88px;
}

.country .select .flagstrap-icon.flagstrap-li {
    background-position: -16px -88px;
}

.country .select .flagstrap-icon.flagstrap-lk {
    background-position: -32px -88px;
}

.country .select .flagstrap-icon.flagstrap-lr {
    background-position: -48px -88px;
}

.country .select .flagstrap-icon.flagstrap-ls {
    background-position: -64px -88px;
}

.country .select .flagstrap-icon.flagstrap-lt {
    background-position: -80px -88px;
}

.country .select .flagstrap-icon.flagstrap-lu {
    background-position: -96px -88px;
}

.country .select .flagstrap-icon.flagstrap-lv {
    background-position: -112px -88px;
}

.country .select .flagstrap-icon.flagstrap-ly {
    background-position: -128px -88px;
}

.country .select .flagstrap-icon.flagstrap-ma {
    background-position: -144px -88px;
}

.country .select .flagstrap-icon.flagstrap-mc {
    background-position: -160px -88px;
}

.country .select .flagstrap-icon.flagstrap-md {
    background-position: -176px -88px;
}

.country .select .flagstrap-icon.flagstrap-me {
    background-position: -192px -88px;
}

.country .select .flagstrap-icon.flagstrap-mg {
    background-position: -208px -88px;
}

.country .select .flagstrap-icon.flagstrap-mh {
    background-position: -224px -88px;
}

.country .select .flagstrap-icon.flagstrap-mk {
    background-position: -240px -88px;
}

.country .select .flagstrap-icon.flagstrap-ml {
    background-position: 0 -99px;
}

.country .select .flagstrap-icon.flagstrap-mm {
    background-position: -16px -99px;
}

.country .select .flagstrap-icon.flagstrap-mn {
    background-position: -32px -99px;
}

.country .select .flagstrap-icon.flagstrap-mo {
    background-position: -48px -99px;
}

.country .select .flagstrap-icon.flagstrap-mp {
    background-position: -64px -99px;
}

.country .select .flagstrap-icon.flagstrap-mq {
    background-position: -80px -99px;
}

.country .select .flagstrap-icon.flagstrap-mr {
    background-position: -96px -99px;
}

.country .select .flagstrap-icon.flagstrap-ms {
    background-position: -112px -99px;
}

.country .select .flagstrap-icon.flagstrap-mt {
    background-position: -128px -99px;
}

.country .select .flagstrap-icon.flagstrap-mu {
    background-position: -144px -99px;
}

.country .select .flagstrap-icon.flagstrap-mv {
    background-position: -160px -99px;
}

.country .select .flagstrap-icon.flagstrap-mw {
    background-position: -176px -99px;
}

.country .select .flagstrap-icon.flagstrap-mx {
    background-position: -192px -99px;
}

.country .select .flagstrap-icon.flagstrap-my {
    background-position: -208px -99px;
}

.country .select .flagstrap-icon.flagstrap-mz {
    background-position: -224px -99px;
}

.country .select .flagstrap-icon.flagstrap-na {
    background-position: -240px -99px;
}

.country .select .flagstrap-icon.flagstrap-nc {
    background-position: 0 -110px;
}

.country .select .flagstrap-icon.flagstrap-ne {
    background-position: -16px -110px;
}

.country .select .flagstrap-icon.flagstrap-nf {
    background-position: -32px -110px;
}

.country .select .flagstrap-icon.flagstrap-ng {
    background-position: -48px -110px;
}

.country .select .flagstrap-icon.flagstrap-ni {
    background-position: -64px -110px;
}

.country .select .flagstrap-icon.flagstrap-nl {
    background-position: -80px -110px;
}

.country .select .flagstrap-icon.flagstrap-no {
    background-position: -96px -110px;
}

.country .select .flagstrap-icon.flagstrap-np {
    background-position: -112px -110px;
}

.country .select .flagstrap-icon.flagstrap-nr {
    background-position: -128px -110px;
}

.country .select .flagstrap-icon.flagstrap-nu {
    background-position: -144px -110px;
}

.country .select .flagstrap-icon.flagstrap-nz {
    background-position: -160px -110px;
}

.country .select .flagstrap-icon.flagstrap-om {
    background-position: -176px -110px;
}

.country .select .flagstrap-icon.flagstrap-pa {
    background-position: -192px -110px;
}

.country .select .flagstrap-icon.flagstrap-pe {
    background-position: -208px -110px;
}

.country .select .flagstrap-icon.flagstrap-pf {
    background-position: -224px -110px;
}

.country .select .flagstrap-icon.flagstrap-pg {
    background-position: -240px -110px;
}

.country .select .flagstrap-icon.flagstrap-ph {
    background-position: 0 -121px;
}

.country .select .flagstrap-icon.flagstrap-pk {
    background-position: -16px -121px;
}

.country .select .flagstrap-icon.flagstrap-pl {
    background-position: -32px -121px;
}

.country .select .flagstrap-icon.flagstrap-pm {
    background-position: -48px -121px;
}

.country .select .flagstrap-icon.flagstrap-pn {
    background-position: -64px -121px;
}

.country .select .flagstrap-icon.flagstrap-pr {
    background-position: -80px -121px;
}

.country .select .flagstrap-icon.flagstrap-ps {
    background-position: -96px -121px;
}

.country .select .flagstrap-icon.flagstrap-pt {
    background-position: -112px -121px;
}

.country .select .flagstrap-icon.flagstrap-pw {
    background-position: -128px -121px;
}

.country .select .flagstrap-icon.flagstrap-py {
    background-position: -144px -121px;
}

.country .select .flagstrap-icon.flagstrap-qa {
    background-position: -160px -121px;
}

.country .select .flagstrap-icon.flagstrap-re {
    background-position: -176px -121px;
}

.country .select .flagstrap-icon.flagstrap-ro {
    background-position: -192px -121px;
}

.country .select .flagstrap-icon.flagstrap-rs {
    background-position: -208px -121px;
}

.country .select .flagstrap-icon.flagstrap-ru {
    background-position: -224px -121px;
}

.country .select .flagstrap-icon.flagstrap-rw {
    background-position: -240px -121px;
}

.country .select .flagstrap-icon.flagstrap-sa {
    background-position: 0 -132px;
}

.country .select .flagstrap-icon.flagstrap-sb {
    background-position: -16px -132px;
}

.country .select .flagstrap-icon.flagstrap-sc {
    background-position: -32px -132px;
}

.country .select .flagstrap-icon.flagstrap-scotland {
    background-position: -48px -132px;
}

.country .select .flagstrap-icon.flagstrap-sd {
    background-position: -64px -132px;
}

.country .select .flagstrap-icon.flagstrap-se {
    background-position: -80px -132px;
}

.country .select .flagstrap-icon.flagstrap-sg {
    background-position: -96px -132px;
}

.country .select .flagstrap-icon.flagstrap-sh {
    background-position: -112px -132px;
}

.country .select .flagstrap-icon.flagstrap-si {
    background-position: -128px -132px;
}

.country .select .flagstrap-icon.flagstrap-sk {
    background-position: -144px -132px;
}

.country .select .flagstrap-icon.flagstrap-sl {
    background-position: -160px -132px;
}

.country .select .flagstrap-icon.flagstrap-sm {
    background-position: -176px -132px;
}

.country .select .flagstrap-icon.flagstrap-sn {
    background-position: -192px -132px;
}

.country .select .flagstrap-icon.flagstrap-so {
    background-position: -208px -132px;
}

.country .select .flagstrap-icon.flagstrap-somaliland {
    background-position: -224px -132px;
}

.country .select .flagstrap-icon.flagstrap-sr {
    background-position: -240px -132px;
}

.country .select .flagstrap-icon.flagstrap-ss {
    background-position: 0 -143px;
}

.country .select .flagstrap-icon.flagstrap-st {
    background-position: -16px -143px;
}

.country .select .flagstrap-icon.flagstrap-sv {
    background-position: -32px -143px;
}

.country .select .flagstrap-icon.flagstrap-sx {
    background-position: -48px -143px;
}

.country .select .flagstrap-icon.flagstrap-sy {
    background-position: -64px -143px;
}

.country .select .flagstrap-icon.flagstrap-sz {
    background-position: -80px -143px;
}

.country .select .flagstrap-icon.flagstrap-tc {
    background-position: -96px -143px;
}

.country .select .flagstrap-icon.flagstrap-td {
    background-position: -112px -143px;
}

.country .select .flagstrap-icon.flagstrap-tf {
    background-position: -128px -143px;
}

.country .select .flagstrap-icon.flagstrap-tg {
    background-position: -144px -143px;
}

.country .select .flagstrap-icon.flagstrap-th {
    background-position: -160px -143px;
}

.country .select .flagstrap-icon.flagstrap-tj {
    background-position: -176px -143px;
}

.country .select .flagstrap-icon.flagstrap-tk {
    background-position: -192px -143px;
}

.country .select .flagstrap-icon.flagstrap-tl {
    background-position: -208px -143px;
}

.country .select .flagstrap-icon.flagstrap-tm {
    background-position: -224px -143px;
}

.country .select .flagstrap-icon.flagstrap-tn {
    background-position: -240px -143px;
}

.country .select .flagstrap-icon.flagstrap-to {
    background-position: 0 -154px;
}

.country .select .flagstrap-icon.flagstrap-tr {
    background-position: -16px -154px;
}

.country .select .flagstrap-icon.flagstrap-tt {
    background-position: -32px -154px;
}

.country .select .flagstrap-icon.flagstrap-tv {
    background-position: -48px -154px;
}

.country .select .flagstrap-icon.flagstrap-tw {
    background-position: -64px -154px;
}

.country .select .flagstrap-icon.flagstrap-tz {
    background-position: -80px -154px;
}

.country .select .flagstrap-icon.flagstrap-ua {
    background-position: -96px -154px;
}

.country .select .flagstrap-icon.flagstrap-ug {
    background-position: -112px -154px;
}

.country .select .flagstrap-icon.flagstrap-um {
    background-position: -128px -154px;
}

.country .select .flagstrap-icon.flagstrap-us {
    background-position: -144px -154px;
}

.country .select .flagstrap-icon.flagstrap-uy {
    background-position: -160px -154px;
}

.country .select .flagstrap-icon.flagstrap-uz {
    background-position: -176px -154px;
}

.country .select .flagstrap-icon.flagstrap-va {
    background-position: -192px -154px;
}

.country .select .flagstrap-icon.flagstrap-vc {
    background-position: -208px -154px;
}

.country .select .flagstrap-icon.flagstrap-ve {
    background-position: -224px -154px;
}

.country .select .flagstrap-icon.flagstrap-vg {
    background-position: -240px -154px;
}

.country .select .flagstrap-icon.flagstrap-vi {
    background-position: 0 -165px;
}

.country .select .flagstrap-icon.flagstrap-vn {
    background-position: -16px -165px;
}

.country .select .flagstrap-icon.flagstrap-vu {
    background-position: -32px -165px;
}

.country .select .flagstrap-icon.flagstrap-wales {
    background-position: -48px -165px;
}

.country .select .flagstrap-icon.flagstrap-wf {
    background-position: -64px -165px;
}

.country .select .flagstrap-icon.flagstrap-ws {
    background-position: -80px -165px;
}

.country .select .flagstrap-icon.flagstrap-ye {
    background-position: -96px -165px;
}

.country .select .flagstrap-icon.flagstrap-yt {
    background-position: -112px -165px;
}

.country .select .flagstrap-icon.flagstrap-za {
    background-position: -128px -165px;
}

.country .select .flagstrap-icon.flagstrap-zanzibar {
    background-position: -144px -165px;
}

.country .select .flagstrap-icon.flagstrap-zm {
    background-position: -160px -165px;
}

.country .select .flagstrap-icon.flagstrap-zw {
    background-position: -176px -165px;
}

.country .select:after {
    content: "";
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 8px;
    height: 5px;
    background: url("https://zinee91.dothome.co.kr/codepen/ico_updown3.png") no-repeat;
}

.country .select.open:after {
    background-position: 0 -5px;
}

.country .dropdown {
    display: none;
    position: absolute;
    top: 39px;
    left: 0;
    width: 100%;
    height: 225px;
    border: 1px solid #cfcfcf;
    border-top: 1px solid #a6a6a6;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow-y: scroll;
    z-index: 1;
}

.country .dropdown .flagstrap-icon {
    box-sizing: border-box;
    display: inline-block;
    margin-right: 10px;
    width: 16px;
    height: 11px;
    background-image: url("https://raw.githubusercontent.com/blazeworx/flagstrap/master/dist/css/flags.png");
    background-repeat: no-repeat;
    background-color: #e3e5e7;
}

.country .dropdown .flagstrap-icon.flagstrap-ad {
    background-position: -16px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-ae {
    background-position: -32px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-af {
    background-position: -48px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-ag {
    background-position: -64px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-ai {
    background-position: -80px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-al {
    background-position: -96px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-am {
    background-position: -112px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-an {
    background-position: -128px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-ao {
    background-position: -144px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-ar {
    background-position: -160px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-as {
    background-position: -176px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-at {
    background-position: -192px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-au {
    background-position: -208px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-aw {
    background-position: -224px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-az {
    background-position: -240px 0;
}

.country .dropdown .flagstrap-icon.flagstrap-ba {
    background-position: 0 -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bb {
    background-position: -16px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bd {
    background-position: -32px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-be {
    background-position: -48px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bf {
    background-position: -64px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bg {
    background-position: -80px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bh {
    background-position: -96px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bi {
    background-position: -112px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bj {
    background-position: -128px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bm {
    background-position: -144px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bn {
    background-position: -160px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bo {
    background-position: -176px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-br {
    background-position: -192px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bs {
    background-position: -208px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bt {
    background-position: -224px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bv {
    background-position: -240px -11px;
}

.country .dropdown .flagstrap-icon.flagstrap-bw {
    background-position: 0 -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-by {
    background-position: -16px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-bz {
    background-position: -32px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-ca {
    background-position: -48px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-catalonia {
    background-position: -64px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-cd {
    background-position: -80px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-cf {
    background-position: -96px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-cg {
    background-position: -112px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-ch {
    background-position: -128px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-ci {
    background-position: -144px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-ck {
    background-position: -160px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-cl {
    background-position: -176px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-cm {
    background-position: -192px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-cn {
    background-position: -208px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-co {
    background-position: -224px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-cr {
    background-position: -240px -22px;
}

.country .dropdown .flagstrap-icon.flagstrap-cu {
    background-position: 0 -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-cv {
    background-position: -16px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-cw {
    background-position: -32px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-cy {
    background-position: -48px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-cz {
    background-position: -64px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-de {
    background-position: -80px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-dj {
    background-position: -96px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-dk {
    background-position: -112px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-dm {
    background-position: -128px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-do {
    background-position: -144px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-dz {
    background-position: -160px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-ec {
    background-position: -176px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-ee {
    background-position: -192px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-eg {
    background-position: -208px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-eh {
    background-position: -224px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-england {
    background-position: -240px -33px;
}

.country .dropdown .flagstrap-icon.flagstrap-er {
    background-position: 0 -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-es {
    background-position: -16px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-et {
    background-position: -32px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-eu {
    background-position: -48px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-fi {
    background-position: -64px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-fj {
    background-position: -80px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-fk {
    background-position: -96px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-fm {
    background-position: -112px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-fo {
    background-position: -128px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-fr {
    background-position: -144px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-ga {
    background-position: -160px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-gb {
    background-position: -176px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-gd {
    background-position: -192px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-ge {
    background-position: -208px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-gf {
    background-position: -224px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-gg {
    background-position: -240px -44px;
}

.country .dropdown .flagstrap-icon.flagstrap-gh {
    background-position: 0 -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gi {
    background-position: -16px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gl {
    background-position: -32px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gm {
    background-position: -48px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gn {
    background-position: -64px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gp {
    background-position: -80px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gq {
    background-position: -96px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gr {
    background-position: -112px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gs {
    background-position: -128px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gt {
    background-position: -144px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gu {
    background-position: -160px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gw {
    background-position: -176px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-gy {
    background-position: -192px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-hk {
    background-position: -208px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-hm {
    background-position: -224px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-hn {
    background-position: -240px -55px;
}

.country .dropdown .flagstrap-icon.flagstrap-hr {
    background-position: 0 -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-ht {
    background-position: -16px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-hu {
    background-position: -32px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-ic {
    background-position: -48px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-id {
    background-position: -64px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-ie {
    background-position: -80px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-il {
    background-position: -96px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-im {
    background-position: -112px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-in {
    background-position: -128px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-io {
    background-position: -144px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-iq {
    background-position: -160px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-ir {
    background-position: -176px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-is {
    background-position: -192px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-it {
    background-position: -208px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-je {
    background-position: -224px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-jm {
    background-position: -240px -66px;
}

.country .dropdown .flagstrap-icon.flagstrap-jo {
    background-position: 0 -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-jp {
    background-position: -16px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-ke {
    background-position: -32px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-kg {
    background-position: -48px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-kh {
    background-position: -64px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-ki {
    background-position: -80px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-km {
    background-position: -96px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-kn {
    background-position: -112px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-kp {
    background-position: -128px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-kr {
    background-position: -144px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-kurdistan {
    background-position: -160px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-kw {
    background-position: -176px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-ky {
    background-position: -192px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-kz {
    background-position: -208px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-la {
    background-position: -224px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-lb {
    background-position: -240px -77px;
}

.country .dropdown .flagstrap-icon.flagstrap-lc {
    background-position: 0 -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-li {
    background-position: -16px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-lk {
    background-position: -32px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-lr {
    background-position: -48px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-ls {
    background-position: -64px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-lt {
    background-position: -80px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-lu {
    background-position: -96px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-lv {
    background-position: -112px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-ly {
    background-position: -128px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-ma {
    background-position: -144px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-mc {
    background-position: -160px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-md {
    background-position: -176px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-me {
    background-position: -192px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-mg {
    background-position: -208px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-mh {
    background-position: -224px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-mk {
    background-position: -240px -88px;
}

.country .dropdown .flagstrap-icon.flagstrap-ml {
    background-position: 0 -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mm {
    background-position: -16px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mn {
    background-position: -32px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mo {
    background-position: -48px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mp {
    background-position: -64px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mq {
    background-position: -80px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mr {
    background-position: -96px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-ms {
    background-position: -112px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mt {
    background-position: -128px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mu {
    background-position: -144px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mv {
    background-position: -160px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mw {
    background-position: -176px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mx {
    background-position: -192px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-my {
    background-position: -208px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-mz {
    background-position: -224px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-na {
    background-position: -240px -99px;
}

.country .dropdown .flagstrap-icon.flagstrap-nc {
    background-position: 0 -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-ne {
    background-position: -16px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-nf {
    background-position: -32px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-ng {
    background-position: -48px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-ni {
    background-position: -64px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-nl {
    background-position: -80px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-no {
    background-position: -96px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-np {
    background-position: -112px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-nr {
    background-position: -128px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-nu {
    background-position: -144px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-nz {
    background-position: -160px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-om {
    background-position: -176px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-pa {
    background-position: -192px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-pe {
    background-position: -208px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-pf {
    background-position: -224px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-pg {
    background-position: -240px -110px;
}

.country .dropdown .flagstrap-icon.flagstrap-ph {
    background-position: 0 -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-pk {
    background-position: -16px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-pl {
    background-position: -32px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-pm {
    background-position: -48px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-pn {
    background-position: -64px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-pr {
    background-position: -80px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-ps {
    background-position: -96px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-pt {
    background-position: -112px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-pw {
    background-position: -128px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-py {
    background-position: -144px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-qa {
    background-position: -160px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-re {
    background-position: -176px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-ro {
    background-position: -192px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-rs {
    background-position: -208px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-ru {
    background-position: -224px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-rw {
    background-position: -240px -121px;
}

.country .dropdown .flagstrap-icon.flagstrap-sa {
    background-position: 0 -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sb {
    background-position: -16px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sc {
    background-position: -32px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-scotland {
    background-position: -48px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sd {
    background-position: -64px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-se {
    background-position: -80px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sg {
    background-position: -96px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sh {
    background-position: -112px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-si {
    background-position: -128px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sk {
    background-position: -144px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sl {
    background-position: -160px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sm {
    background-position: -176px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sn {
    background-position: -192px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-so {
    background-position: -208px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-somaliland {
    background-position: -224px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-sr {
    background-position: -240px -132px;
}

.country .dropdown .flagstrap-icon.flagstrap-ss {
    background-position: 0 -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-st {
    background-position: -16px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-sv {
    background-position: -32px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-sx {
    background-position: -48px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-sy {
    background-position: -64px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-sz {
    background-position: -80px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-tc {
    background-position: -96px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-td {
    background-position: -112px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-tf {
    background-position: -128px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-tg {
    background-position: -144px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-th {
    background-position: -160px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-tj {
    background-position: -176px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-tk {
    background-position: -192px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-tl {
    background-position: -208px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-tm {
    background-position: -224px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-tn {
    background-position: -240px -143px;
}

.country .dropdown .flagstrap-icon.flagstrap-to {
    background-position: 0 -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-tr {
    background-position: -16px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-tt {
    background-position: -32px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-tv {
    background-position: -48px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-tw {
    background-position: -64px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-tz {
    background-position: -80px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-ua {
    background-position: -96px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-ug {
    background-position: -112px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-um {
    background-position: -128px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-us {
    background-position: -144px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-uy {
    background-position: -160px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-uz {
    background-position: -176px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-va {
    background-position: -192px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-vc {
    background-position: -208px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-ve {
    background-position: -224px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-vg {
    background-position: -240px -154px;
}

.country .dropdown .flagstrap-icon.flagstrap-vi {
    background-position: 0 -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-vn {
    background-position: -16px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-vu {
    background-position: -32px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-wales {
    background-position: -48px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-wf {
    background-position: -64px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-ws {
    background-position: -80px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-ye {
    background-position: -96px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-yt {
    background-position: -112px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-za {
    background-position: -128px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-zanzibar {
    background-position: -144px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-zm {
    background-position: -160px -165px;
}

.country .dropdown .flagstrap-icon.flagstrap-zw {
    background-position: -176px -165px;
}

.country .dropdown .flagstrap-icon {
    vertical-align: middle;
}

.country .dropdown li {
    padding: 0 20px;
    line-height: 34px;
    font-size: 13px;
    font-weight: 400;
    color: #828282;
    cursor: pointer;
}

.country .dropdown li:first-child {
    margin-top: 12px;
}

.country .dropdown li:last-child {
    margin-bottom: 12px;
}

.country .dropdown li:hover {
    background: #dedede;
    color: #454545;
}

.country .dropdown li.open {
    display: block;
}


/* end  */


/* Trade Compliance */

section.trade-compliance {
    padding: 80px 0;
    background-image: url(../images/login-bg.png);
    background-size: cover;
}

.trade-comp-wrap {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    width: 90%;
    margin: 0 auto;
}

.trade-comp-wrap h4 {
    font-family: 'Encode Sans Expanded';
    font-size: 31px;
    font-weight: 700;
    line-height: 37.2px;
    color: #49AB81;
    margin-bottom: 50px;
}

.trade-comp-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    font-family: 'Encode Sans Expanded';
    margin-bottom: 30px;
}

.inp-field textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #49AB81;
    height: 140px;
    color: #000;
    padding-top: 20px;
}

.inp-field .drop-zone1 img {
    position: static;
}

.trade-btn button {
    margin: 0 0 0 auto;
    margin-top: 40px;
}

.terms-trade ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    margin-top: 60px;
}

.terms-trade .trade-btn button {
    margin: 0;
}

.drop-zone1.zone2 {
    height: 100px;
}


/* end  */


/* Checkout */

.check-wrap {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    width: 90%;
    margin: 0 auto;
}

section.checkout-trade {
    padding: 80px 0;
    background-image: url(../images/login-bg.png);
    background-size: cover;
}

section.checkout-trade h6 {
    font-family: 'Encode Sans Expanded';
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    color: #000;
    padding-left: 10px;
}

.coupon input::placeholder {
    text-align: right;
}


/* end  */


/*responsive start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    section.trade-compliance {
        padding: 0 0 80px 0;
    }
    ul#menu li a {
        padding: 0 !important;
        font-size: 14px;
    }
    .dropbtn {
        padding: 0 10px 0 10px;
        height: 65px;
    }
    ul.dropbtn li h6 {
        margin: 0;
        margin-left: 8px;
        font-size: 12px;
        line-height: 1.2;
    }
    ul.dropbtn li h6 span {
        font-size: 10px;
    }
    .dropdown-content {
        min-width: 130%;
        left: -15%;
    }
    .email-wrap {
        padding: 100px 20px;
        width: 100%;
    }
    .email-wrap form {
        width: 95%;
    }
    .check-wrap {
        width: 100%;
    }
    .login.digital-container:before {
        width: 44%;
        height: 80%;
        top: 20%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    ul#menu li a {
        padding: 0 !important;
        font-size: 14px;
    }
    .dropbtn {
        padding: 0 10px 0 10px;
        height: 65px;
    }
    ul.dropbtn li h6 {
        margin: 0;
        margin-left: 8px;
        font-size: 12px;
        line-height: 1.2;
    }
    ul.dropbtn li h6 span {
        font-size: 10px;
    }
    .dropdown-content {
        min-width: 130%;
        left: -15%;
    }
    .email-wrap {
        padding: 100px 0;
        width: 100%;
    }
    .email-wrap form {
        width: 85%;
    }
    .prod-img-cntnt h2 {
        font-size: 24px;
    }
    .login.digital-container:before {
        width: 44%;
        height: 57%;
        top: 20%;
    }
    section.shipment.shp-detail {
        padding: 0 0 0 0;
    }
    .menuSec li:hover>ul {
        left: -60px;
        top: 50px;
    }
    .digiral-trans-a {
        text-align: left;
        margin-left: 30px;
    }
    .toptext-docu p {
        line-height: 1.3;
    }
    .dv1docu h3 {
        font-size: 20px;
        line-height: 1.2;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    ul#menu li a {
        padding: 0 !important;
        font-size: 14px;
    }
    .dropbtn {
        padding: 0 10px 0 10px;
        height: 65px;
    }
    ul.dropbtn li h6 {
        margin: 0;
        margin-left: 8px;
        font-size: 12px;
        line-height: 1.2;
    }
    ul.dropbtn li h6 span {
        font-size: 10px;
    }
    .dropdown-content {
        min-width: 130%;
        left: -15%;
    }
    ul.user-profile li {
        padding-bottom: 10px;
    }
    .trade-comp-wrap {
        padding: 50px 20px;
        width: 100%;
    }
    .email-wrap {
        padding: 100px 0;
        width: 100%;
    }
    .email-wrap form {
        width: 90%;
    }
    .login-wrap {
        padding: 60px 20px;
    }
    .login.digital-container:before {
        top: 27%;
    }
    .login-text {
        width: 90%;
    }
    .inp-field {
        margin-bottom: 10px;
    }
    .inp-field input,
    .inp-field select.form-select {
        height: 40px;
    }
    .charges-applied ul li {
        font-size: 13px;
    }
    section.checkout-trade {
        padding: 20px 0 40px 0;
    }
    .check-wrap {
        padding: 50px 20px;
        width: 100%;
    }
    .email-wrap.resend-email h6 {
        width: 100%;
    }
    span.online-prd {
        width: max-content;
        padding: 10px 16px;
        font-size: 14px;
    }
    .table>thead>tr>th {
        font-size: 12px;
    }
    .table>tbody>tr>td {
        font-size: 12px;
    }
    .table-space h3 {}
    .table-space input {
        vertical-align: middle;
    }
    .mangment-pen a:first-child,
    .mangment-pen a:last-child {
        width: 40px;
        height: 40px;
    }
    .shment-wrap.shp-detail h3 {
        font-size: 14px;
    }
    section.shipment.shp-detail {
        padding: 0 0 80px 0;
    }
    .inp-field .drop-zone1 img {
        width: 30%;
    }
    .drop-zone-content h5 {
        margin: 20px 0;
        font-size: 14px;
        line-height: 20px;
    }
    section.trade-compliance {
        padding: 0px 0 60px 0;
    }
    .trade-comp-wrap h3 {
        font-size: 18px;
    }
    .country .select {
        height: 40px;
    }
    .menuSec li:hover>ul {
        left: -180px;
        top: 50px;
    }
    .toptext-docu p {
        font-size: 25px;
        line-height: 1.3;
    }
    ul.ul1ft li a img {
        width: 40px;
        margin-right: auto;
        display: block;
    }
    ul#menu {
    gap: 20px;
}

.droopdwon ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menuSec .col-md-3 {
    padding: 0;
}
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .email-wrap {
        padding: 100px 0;
        width: 100%;
    }
    .email-wrap form {
        width: 85%;
    }
    .email-wrap h6 {
        width: 90%;
    }
    .check-wrap {
        padding: 50px 20px;
        width: 100%;
    }
    section.login-user.login .row {
        flex-direction: column-reverse;
    }
    .login-wrap {
        padding: 80px 20px;
        margin: 130px 0 0 0;
    }
    table.table {
        white-space: nowrap;
    }
    .shment-wrap {
        box-shadow: none;
        background: none;
    }
    .trade-comp-wrap {
        padding: 50px 20px;
        width: 100%;
    }
    .terms-trade ul {
        display: block;
        margin-top: 20px;
    }
    .terms-trade ul li {
        margin: 20px 0;
    }
    ul.ul1ft li a>h6 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .slicknav_nav a:hover {
        background: #317256;
    }
    .slicknav_nav li a h6 {
        color: #fff !important;
        font-size: 13px;
        margin: 0;
    }
    .slicknav_nav li a img {
        width: 20px;
    }
    .slicknav_nav a {
        margin-left: 0;
        margin-right: 0;
    }
    section.namesslid {
        padding: 15px 0px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .text-automate p span {
        display: inline;
    }
    .bottomtexthowit p span {
        display: inline;
        margin-left: 4px;
    }
    .text-automate h4 span {
        display: inline-block;
    }
    .toptext-docu p span {
        display: inline;
    }
    .prf-det.btn button {
        display: block;
        width: 100%;
    }
    .prf-det.btn {
        display: block;
    }
    .prf-det.btn button:first-child {
        margin-bottom: 10px;
    }
    .prf-frm {
        display: block;
    }
    .profile-detail form {
        width: 90%;
    }
    .prf-frm>div:first-child {
        width: 100%;
    }
    .prf-frm>div:last-child {
        width: 100%;
    }
    .btn1,
    .btn2 {
        font-size: 16px !important;
        padding: 0 50px !important;
    }
    .email-wrap {
        padding: 80px 0;
        width: 100%;
    }
    .email-wrap form {
        width: 90%;
    }
    .check-wrap {
        padding: 50px 20px;
        width: 100%;
    }
    .email-wrap h6 {
        width: 90%;
    }
    .login-text {
        width: 90%;
        margin: 20px auto 0;
    }
    .login-user.login.digital-container .row {
        flex-direction: column-reverse;
    }
    .login.digital-container:before {
        top: 15%;
        height: 20%;
    }
    .email-wrap.resend-email h6 {
        width: 100%;
    }
    .login-wrap {
        margin: 130px 0 0 0;
        padding: 60px 15px;
    }
    section.shipment {
        height: auto;
    }
    table.table {
        white-space: nowrap;
    }
    .shment-wrap h4 {
        margin: 45px;
        text-align: center;
        font-size: 20px;
    }
    .shment-wrap h4 a {
    font-size: 15px;
}
    .shment-wrap {
        box-shadow: none;
        background: none;
    }
    .trade-comp-wrap {
        padding: 50px 20px 10px;
        width: 100%;
    }
    section.trade-compliance {
        padding: 40px 0;
    }
    .terms-trade ul {
        margin-top: 30px;
        display: block;
    }
    .terms-trade ul li {
        margin: 10px 0;
        font-size: 13px;
        line-height: 1.6;
    }
    .inp-field .drop-zone1 img {
        width: 25%;
    }
    .drop-zone-content h5 {
        margin: 15px 0;
        font-size: 18px;
    }
    ul.ul1ft li a>h6 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .slicknav_nav a:hover {
        background: #317256;
    }
    .slicknav_nav li a h6 {
        color: #fff !important;
        font-size: 12px;
        margin: 0;
    }
    .slicknav_nav li a img {
        width: 20px;
    }
    .slicknav_nav a {
        margin-left: 0;
        margin-right: 0;
        display: flex;
        align-items: center;
        justify-content: start;
    }
    section.namesslid {
        padding: 15px 0px;
    }
    .dropbtn {
        width: 100%;
        justify-content: space-between;
        padding-left: 0;
        padding-top: 0;
        margin-top: 10px;
    }
    .trade-comp-wrap h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
   fieldset.upload-img p.upload-again {
    font-size: 16px;
    margin-left: 175px;
}
    
    
    
    
    
    
    
}

.form-group {
    display: block;
    margin-bottom: 15px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
    white-space: break-spaces;
    font-size: 14px;
    font-style: normal;
    margin: 0;
    font-weight: 400;
    color: #023047 !important;
    padding-left: 30px;
}

.form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #49AB81;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 6px;
    background: #CBFFE9;
}

.form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 39px;
    width: 6px;
    height: 14px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

thead .form-group label {
    padding: 0;
    font-weight: 700;
}

thead .form-group input:checked+label:after {
    left: 9px;
    top: 7px;
}

thead .form-group {
    margin: 0;
}

.terms-trade .form-group label {
    padding: 0;
}

.terms-trade .form-group input:checked+label:after {
    left: 9px;
}


/* Image Uploader second */

.drop-zone10 {
    max-width: 100%;
    height: 235.54px;
    border: 2px dashed #1e7c53;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F8F8FF;
    cursor: pointer;
    border-radius: 15px;
    position: relative;
}

.drop-zone10 input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

img.profile-pic {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

img.profile-pic.active1 {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.drop-zone10.zone-heig {
    height: 100px;
}

label.label-upload {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    line-height: 20.3px;
    color: #ACACAC;
    margin-bottom: 6px;
}


/* end  */





.profile-pic {
    width: 200px;
    max-height: 200px;
    display: inline-block;
}

/* .file-upload {
    display: none;
} */
.circle {
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.p-image {
  position: absolute;
  right: 104px;
  bottom: -11px;
  color: #666666;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.p-image:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.upload-button {
  font-size: 1.2em;
}

.upload-button:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  color: #999;
}

.circle img {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 0 10px #00000024;
}

.small-12.medium-2.large-2.columns .p-image input {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: -40px;
}

.small-12.medium-2.large-2.columns {
    width: 30%;
    position: relative;
    margin: 0 auto;
}


p.upload-again {
    color: #49ab81;
    font-size: 18px;
    font-weight: 500;
    display: none;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 200px;
}

p.upload-again1,
p.upload-again2,
p.upload-again3,
p.upload-again4,
p.upload-again5,
p.upload-again6 {
    color: #49ab81;
    font-size: 18px;
    font-weight: 500;
    display: none;
    cursor: pointer;
    margin-left: 80px;
}
span.select2-selection__clear {
    width: 20px;
    height: 20px;
    background: #fff;
    font-size: 16px;
    right: -10px;
    position: relative;
    background: #fff !important;
    display: inline-block;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 4px;
    z-index: 5;
}


/* Card Cstm */
a.change-card {
    border: 1px solid #D9D9D9;
    background: #FAFAFA;
    color: #02100F;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-details .custom_radio {
    flex-direction: column;
    display: block;
}

.custom_radio.card-radio label input {
    width: 100% !important;
    height: 60px;
    padding: 20px;
    border: 1px solid #DCDCDC;
    /* margin-bottom: 25px; */
    border-radius: 10px;
    color: #191C24;
}

.card-radio input[type="radio"]+label {
    width: 100% !important;
    padding-left: 50px;
}

.card-radio input[type="radio"]+label:before {
    width: 30px !important;
    height: 30px !important;
    top: 8px;
}

.card-radio input[type="radio"]:checked+label:before {
    box-shadow: inset 0 0 0 0.4em white, inset 0 0 0 2em var(--green);
}

.card-radio > div {
    display: flex;
    align-items: center;
    position:relative;
    gap: 20px;
    margin: 15px 0;
}

.custom_radio.card-radio label input img {
    width: 10px !important;
}

.custom_radio.card-radio label img {
    width: 35px;
    position: absolute;
    right: 20px;
    top: 14px;
}

.card-radio .add-more-pallet {
    margin: 0;
}
.card-radio div > label {
    width: 100%;
}

.card-radio div .carrier-chkbx-item {padding-top: 0;}
div#add-card-input {
    color: #fff;
    font-weight: 500;
    background: #00ad85;
    height: 35px;
    padding: 0 15px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
/* Card Cstm */


/* date picker */

.date-picker-status input[type="date"]::-webkit-inner-spin-button,
.date-picker-status input[type="time"]::-webkit-inner-spin-button {
    /* display: none; */
    opacity: 0;
}

.date-picker-status input[type="date"],
.date-picker-status input[type="time"] {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 2;
}

.date-picker-status input[type="date"]::-webkit-calendar-picker-indicator,
.date-picker-status input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    background: transparent;
    bottom: 0;
    color: transparent;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    appearance: none;
    cursor: pointer;
    filter: invert(1);
}

.date-picker-status input,
.date-picker-status select {
    height: 45px;
    padding: 0 20px;
    color: #999B9F;
    border: 1px solid #49AB81;
    border-radius: 10px;
    width: 100%;
}

.date-picker-status input::placeholder {
    color: #999B9F;
}

.date-picker-status {
    position: relative;
    width: 285px !important;
}

.date-picker-status i {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 12px;
    font-size: 18px;
    color: #999B9F;
}
.inp-field ::placeholder {
    color: #ACACAC;
}


.inp-field label {
    color: #000;
}


.login-form input[type="checkbox"]:checked {
    background-color: #1b7951;
    border-color: #1b7951;
}


.powered-by {
    position: absolute;
    right: 0;
    width: 200px;
    text-align: center;
    top: -35px;
    color: #fff;
    font-weight: 500;
}

.powered-by > img {
    width: 100px;
}

.footer > div {
    position: relative;
}


 .select2 .img-flag{
    position:static !important;
}




.range-slider {
    width: 100%;
    position: relative;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.range-slider input {
    border: none;
}

.range-slider .rangeValues {
    display: block;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-top: 10px;
}

.range-slider input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    position: absolute;
    left: 0;
    border: none;
    padding: 0px !important;
    height: 0;
    top: -15%;
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #4bad83;
    border: none;
    border-radius: 3px;
}

.range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #4bad83;
    margin-top: -5px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.range-slider input[type=range]:focus {
    outline: none;
}

.range-slider input[type=range]:focus::-webkit-slider-runnable-track {
    background: #4bad83;
}

.range-slider input[type=range]::-moz-range-track {
    width: 300px;
    height: 5px;
    background: #4bad83;
    border: none;
    border-radius: 3px;
}

.range-slider input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #4bad83;
}

.filters .container {
    padding: 20px;
    box-shadow: 0 0 10px #ccc;
    border-radius: 10px;
}

.filters {
    margin: 30px 0;
}

.range-price h2,
.service-filter h2 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom:10px;
}



.dropdown {
    position: relative;
    margin-bottom: 20px;
}

.dropdown .dropdown-list {
    padding: 25px 20px;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    max-height: 223px;
    overflow-y: auto;
    background: #fff;
    display: none;
    z-index: 10;
}

.dropdown .checkbox {
    opacity: 0;
    transition: opacity 0.2s;
}

.dropdown .dropdown-label {
    display: block;
    height: 44px;
    line-height: 42px;
    background: #fff;
    /*border: 1px solid rgba(0, 0, 0, 0.2);*/
    padding: 0 40px 0 20px;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-top: 10px;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
}

.dropdown .dropdown-label:before {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s;
    transform-origin: center center;
    font-size: 16px;
}

.dropdown.open .dropdown-list {
    display: block;
}

.dropdown.open .checkbox {
    transition: 2s opacity 2s;
    opacity: 1;
}

.dropdown.open .dropdown-label:before {
    transform: translateY(-50%) rotate(-180deg);
}

.checkbox {
    margin-bottom: 20px;
}

.checkbox:last-child {
    margin-bottom: 0;
}

.checkbox .checkbox-custom {
    display: none;
}

.checkbox .checkbox-custom-label {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
}

.checkbox .checkbox-custom+.checkbox-custom-label:before {
    content: "";
    background: transparent;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    text-align: center;
    width: 12px;
    height: 12px;
    border: 1px solid #49ab81;
    border-radius: 2px;
    margin-top: -2px;
    box-sizing: content-box;
}

.checkbox .checkbox-custom:checked+.checkbox-custom-label:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 4px;
    height: 4px;
    padding: 2px;
    transform: rotate(45deg);
    text-align: center;
    border: solid #49ab81;
    border-width: 0 2px 2px 0;
    box-sizing: content-box;
}

.checkbox .checkbox-custom-label {
    line-height: 16px;
    font-size: 16px;
    margin-right: 0;
    margin-left: 0;
    color: #000000;
}




ul.multiselect-container.dropdown-menu.show {
    top: 0;
    transform: translate3d(0px, 50px, 0px);
}


.service-filter .dropdown {
    position: relative;
    margin-bottom: 0;
}
.filters .btn-group {
    height: 52px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
}
button.multiselect.dropdown-toggle.btn.btn-default {
    width: 100%;
    border-radius: 10px;
    height: 50px;
}




.multi_drop_Down{
    position:relative;
}

.multi_drop_Down h4 {
    font-size: 16px;
    display: flex;
    justify-content:space-between;
    align-items:center;
    padding:0 15px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.multi_drop_Down ul {
    padding: 10px 25px;
    background-color: #fff;
    position: absolute;
    top: 100%;
    width: 100%;
    box-shadow: 0 0 20px #00000040;
    border-radius: 10px;
}
.multi_drop_Down ul li:not(:last-child){
    margin-bottom:8px;
}
.multi_drop_Down h4 i {
    font-size: 12px;
}







