@charset "utf-8";

/*-- RESET STYLE START --*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: 'sancoalesoftenedlregular_2';
    src: url('../fonts/sancoale_softened_medium_italic.woff2') format('woff2'),
         url('../fonts/sancoale_softened_medium_italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


:root {
    --txt-color: #0D0D0D;
    --primary-color: #002060;
    --secondary-color: #0000FF;
    --light-color: #3399FF;
    --btn-primary: #5599ff;
    --btn-secondary: #BF9000;
    --primary-bg: #DEEBF7;
    --secondary-bg: #5599ff;
    --light-bg: #9DC3E6;
    --spacer-top: 80px;
    --spacer-bottom: 80px;
    --spacer: 80px 0px;
    --grey-bg: #D9D9D9;

}

html {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--txt-color);
    height: 100%;
}

@media (min-width:1200px){
.scroll-hide{
overflow: hidden;
}
}


.container {
    max-width: 1400px;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

a,
.link-color:hover {
    color: #5599ff;
}

a:hover,
a:focus,
button:focus,
input,
button {
    outline: none;
    text-decoration: none;
    box-shadow: none !important;
}

input.form-control:not([type=checkbox]) {
    height: 50px;
    color: #000;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #000 !important;
    background: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: 11px;
    background-origin: content-box;
    background-position: right center;
    box-shadow: none !important;
}

.custom-border-radius {
    -moz-border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    border-radius: 15px !important;

}

.spacer-top {
    padding-top: var(--spacer-top);
}

.spacer-bottom {
    padding-bottom: var(--spacer-bottom);
}

.spacer {
    padding: var(--spacer);
}


.primary-bg {
    background-color: var(--primary-bg);
}

.secondary-bg {
    background-color: var(--secondary-bg);
}

.light-bg {
    background-color: var(--light-bg);
}

.bg-grey {
    background-color: var(--grey-bg);
}

.bg-white {
    background-color: #fff;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.link-color {
    color: var(--txt-color) !important;
}

.link-color:hover {
    color: var(--secondary-color) !important;
}

.btn {
    border: none !important;
    color: #fff !important;
    border: none;
    min-width: 80px;
}

.btn-primary {
    background-color: var(--btn-primary) !important;

}


.btn-secondary {
    background-color: var(--btn-secondary) !important;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.30) !important;
    opacity: 1 !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.30) !important;
    opacity: 1 !important;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.30) !important;
    opacity: 1 !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.30) !important;
    opacity: 1 !important;
}


/* TOPBAR */

.topbar {
    height: 40px;
}

.topbar__block > div {
    border-right: 2px solid #fff;
    padding: 0px 20px;
}

.topbar__block > div:last-child {
    border-right: none;
    padding-right: 0px;
}

.topbar__block__chat img {
    width: 20px;
    height: 20px;
}

.topbar__block a {
    color: #fff;
}

.topbar__block i {
    background-color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    color: var(--light-color);
    display: inline-block;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
}

.topbar__block__email i {
    margin-right: 5px;
}

/* HEADER */

header {
    height: 102px;
}

.navbar-brand img {
    width: 120px !important;
}

#navbarTogglerDemo03 {
    align-items: flex-end;
}

.navigation-border {
    border-bottom: 2px solid #000;
}

.navbar-nav .nav-item a {
    color: var(--txt-color) !important;
    font-weight: 500;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.navbar-nav > .nav-item:first-child a {
    padding-left: 0 !important;
}

.navbar-nav > .nav-item:last-child a {
    padding-right: 0px !important;
}


.navbar-nav .nav-item.active a,
.navbar-nav .nav-item a:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-item.active,
.navbar-nav .nav-item:hover {
    border-bottom-color: var(--secondary-color);
}

.nav-item {
    display: flex;
    align-items: center;
}

header .nav-link {
    height: 65px;
    display: flex;
    align-items: flex-end;
}

.looged_user .dropdown-toggle::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-top: .3em solid #000;
}

.looged_user .nav-link {
    padding-left: 2rem;
}

.navbar-toggler {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.navbar-toggler span {
    background-color: var(--primary-color) !important;
    height: 3px;
    margin: 2px 0px;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.navbar-toggler span:first-child {
    width: 15px;
}

.navbar-toggler span:nth-child(2) {
    width: 30px;
}

.navbar-toggler span:last-child {
    width: 45px;
}

.navbar-toggler:hover span {
    width: 50px;
}

.navbar-toggler{
    padding: 0;
    padding-top: 10px;
}


/* INNERPAGE HEADER */

.inner-page header {
    background: url('../images/header-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.profile-dropdown {
    right: 0px;
    left: inherit;
    background-color: #002060;
    color: #fff;
    padding: 0;
}

.inner-page header .dropdown .profile-dropdown a, .partner-account__rt .profile-dropdown a{
    color: #fff !important;
    font-weight: normal;
    font-size: 13px;
    padding: 0 !important;
    padding: 5px 10px !important;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

.inner-page header .dropdown .profile-dropdown a:hover, .partner-account__rt .profile-dropdown a:hover {
    background-color: var(--secondary-bg);
}

/* HERO SLIDER */

.hero__slider__bg {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.slick-list,
.slick-track {
    height: 100%;
}

.hero__content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero__content h1 {
    letter-spacing: 1px;
}

.hero-btn {
    text-transform: uppercase;
    color: var(--txt-color);
    border: 2px solid #C55A11;
    border-radius: 50px;
    padding: 15px 60px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
    display: inline-block;
}

.hero-btn:hover {
    background-color: var(--btn-secondary);
    color: #fff;
}


.hero__btm {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: 0 auto;
}

.flag-listing {
    border-bottom: 2px solid #002060;
    white-space: nowrap;
    /* overflow: hidden; */
}

.infiniteslide_wrap {
    border-bottom: 2px solid #002060;
}

.infiniteslide_wrap .flag-listing {
    border-bottom: none;
}


.flag-listing .js-marquee,
.flag-listing .js-marquee-wrapper {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.flag-listing img {
    margin-right: 10px;
}

.flag-listing li {
    color: var(--secondary-color);
    text-transform: capitalize;
    font-size: 1.125rem;
    margin-right: 53px;
}

/* .flag-listing li:not(:last-child), .flag-listing .js-marquee > li:not(:last-child) {
	margin-right: 50px;
}
*/

.hero__subheading {
    font-family: 'sancoalesoftenedlregular_2';
    font-style: italic;
}

.header-fixed-btm {
    bottom: 0px;
}

.hero-btm-contact span, .hero-btm-contact a{
    font-size: 15px;
}

.hero-btm-contact a {
    color: var(--txt-color);
}

/* FORGOT MODAL */

#forgot-pass-modal input {
    vertical-align: middle;
}

#forgot-pass-modal span {
    font-size: 14px;
}



/* OTP MODAL */

.otp-fields > input {
    width: -webkit-calc(100% / 4 - 20px);
    width: -moz-calc(100% / 4 - 20px);
    width: calc(100% / 4 - 20px);
    margin: 0 10px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: none;
    background-color: #c6d9f1;
    position: relative;
    border-bottom: 4px solid #5599ff;
    font-size: 1.50rem;
    font-weight: bold;
}

.prompt {
    margin-bottom: 20px;
    font-size: 20px;
    color: white;
}


/* PASSWORD CHANGE SUCCESFULLY */


.circle-ripple {
    background-color: #5599ff;
    border: 1px solid #5599ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-animation: ripple 0.7s linear infinite;
    animation: ripple 0.7s linear infinite;
    color: #fff;
    font-size: 25px;
    text-align: center;
    line-height: 60px;
    margin: 50px auto;
}

@-webkit-keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(85, 153, 255, 0.3), 0 0 0 10px rgba(85, 153, 255, 0.3), 0 0 0 20px rgba(85, 153, 255, 0.3), 0 0 0 25px rgba(85, 153, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(85, 153, 255, 0.3), 0 0 0 20px rgba(85, 153, 255, 0.3), 0 0 0 25px rgba(85, 153, 255, 0.3), 0 0 0 30px rgba(85, 153, 255, 0);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(85, 153, 255, 0.3), 0 0 0 10px rgba(85, 153, 255, 0.3), 0 0 0 20px rgba(85, 153, 255, 0.3), 0 0 0 25px rgba(85, 153, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(85, 153, 255, 0.3), 0 0 0 20px rgba(85, 153, 255, 0.3), 0 0 0 25px rgba(85, 153, 255, 0.3), 0 0 0 30px rgba(85, 153, 255, 0);
    }
}
.scrollable {
    overflow-y: auto;
    max-height: 60vh;
}

/* PROFILE IMAGE */

.looged_user img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

/* PROFILE DETAILS */

.main-wrapper {
    padding-top: 142px;
}

.profile__seprator {
    border-right: 1px solid #5B9BD5;
    padding-right: 50px;
}

#previewImg {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
}

.form-input-transparent input:not([type="submit"]) {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #5B9BD5;
    border-radius: 0px
}

.form-input-transparent select {
    border: none;
    border-bottom: 1px solid #5B9BD5;
    border-radius: 0px;
    height: 30px;


}
select[name="reason"]{
    height: auto;
}

.form-input-transparent input.form-control:not([type="submit"]) {
    height: 30px;
}

.del-profile-btns input {
    width: 130px;
    margin: 0 5px;
}

select[name="country-code"] {
    width: 42px;
}

/* TRANSFER PAG */

.transcation__title {
    background: url(../images/heading-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.transcation-details label,
.withdrawn-fees__opt span {
    font-size: 14px;
}

.transcation-details__fields input[type="text"],
.transcation-details__fields select {
    height: 35px;
    font-size: 14px;
    border: none;
}

.transcation-details__fields input[type="text"] {
    font-size: 1.25rem;
}

.withdrawn-fees-wrap {
    height: 35px;
    align-items: center;
}

.withdrawn-fees-wrap span:not(:last-child) {
    margin-right: 10px;
}

.input-green {
    background-color: #A9D18E !important;
}

.input-yellow {
    background-color: #FFFF00 !important;
}

.input-light {
    background-color: #9DC3E6 !important;
}

.light-yellow {
    background-color: #FFD966 !important;
}

.transcation-details__fields select:focus,
.transcation-details__fields .input-green:focus {
    background-color: #A9D18E !important;
}

.transcation-details__fields .input-light:focus {
    background-color: #9DC3E6 !important;
}

.transcation-details__fields .input-yellow:focus {
    background-color: #FFFF00 !important;
}

/* CONFIRM PHONE MODAL */

.confirm-phone {
    display: flex;
}

.confirm-phone select {
    height: 50px;
    width: 100px;
    border-right: none;
    border-radius: .25rem 0rem 0rem .25rem;

}

.confirm-phone input {
    height: 50px;
    border-radius: 0px .25rem .25rem 0px;
}

.transcation__details__blocks ul li {
    display: flex;
}

.transcation__details__blocks ul.Destinataire li > label {
    width: 150px;
}

.transcation__details__blocks ul.Paiement li > label {
    width: 200px;
}

/* CONTACT PAGE */

.message-box {
    height: 227px !important;
    resize: none;
}

/* VIDEOS PAGE */

.video-gallery__image {
    position: relative;
    margin-bottom: 15px;
}

.video-gallery__details.d-flex.justify-content-between {
    margin: 0 auto;
}

.video-rating i {
    color: #ea9803;
    font-size: 13px;
}

.video-views span {
    font-size: 13px;
}

.video-gallery__block .link-color {
    font-size: 14px;
    line-height: 20px !important;
    display: block;
}

.far.fa-play-circle.video-icon {
    color: #fff;
    font-size: 50px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

.video-gallery__block:hover .video-icon {
    top: 45%;
    transform: translateY(-45%);
    opacity: 1;
    visibility: visible;
}

.video-gallery__details {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-gallery__details iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}


/* TRANSCATION HISTORY */

.dataTable th {
    background-color: #BF9000;
}

.dataTable th,
.dataTable td {
    border-color: #000;
    font-size: 14px;
    white-space: nowrap;
}

.table-bordered {
    border-color: #000;
}

.table-filter {
    background-color: #A6A6A6;
}

table.dataTable {
    border-top: none;
    margin-bottom: 0px;
}

.table-filter select,
.table-filter input {
    background-color: #D9D9D9 !important;
    width: 100%;
    border: none;
    border-radius: .25rem;
    padding: .375rem .75rem;
    font-size: 14px;
    height: 35px !important;
}

input.searchData {
    background: url(../images/magnifying-glass.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 10px 50%;
    padding-left: 40px;
    border-radius: 50px;
}

.table td, .table th{
    font-size: 14px;
}


.gj-icon {
    color: #000;
}

.table-filter .btn-outline-secondary {
    background-color: #D9D9D9;
}

.table-filter__block {
    display: flex;
    align-items: center;
}

.table-filter__block label {
    font-size: 13px;
    margin-bottom: 0px;
}

.date-filter {
    width: 50%;
}

.date-filter__to {
    display: flex;
    align-items: center;
}

.maintain-wrap p {
    color: #FFFF00;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.80);
}


/* -- Custom Style Start -- */
.forget-pass-option input:not([type="radio"]) {
    width: 100%;
    height: 48px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: 10px;
    color: #000;
}

.forget-pass-option input[type="radio"],
.forget-pass-option .custom-radio label {
    cursor: pointer;
}

/* -- Custom Style End -- */


/* ADVERTISMENT MODAL */

#adModel button {
    background-color: var(--secondary-bg);
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: initial;
    color: #fff;
    right: -10px;
    top: -10px;
    z-index: 1;
}

/* LOGOUT MODAL */

#logModel .modal-header button {
    position: absolute;
    right: 15px;
    top: 15px;
}


.profile-dashboard-media {
    width: 100%;
    height: 100vh;
    object-fit:cover;
}

.button-alt
 {
    padding: 7px 14px;
    text-transform: uppercase;
    border-radius: 7px;
}

.tick-blk {
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border: 2px solid #4bb543;
    border-radius: 50%;
    color: #4bb543;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* custom style starts ends */


/* PARTNER PAGE */

.partner-header .hero__subheading{
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.partner-header  div{
height: 100%;
}


.partner-account__rt a.dropdown-toggle{
    min-width: 50px;    
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    padding: 0;
    
}

.partner-account__rt a.dropdown-toggle::after{
    display: none;
}

.patner-bg {
	width: 100%;
	height: 100vh;
	background-size: cover !important;
	background-position: top center !important;
}

.parnter-spacer{
    padding-top: 184px;
}

.input-orange{
    background: #ed7d31 !important;
}

.search-align .dataTables_filter{
    display: flex !important; 
    justify-content: flex-end;
}

.search-align .dataTables_filter input[type="search"] {
    background: #fff url("../../home/images/magnifying-glass.png");
    background-repeat: no-repeat;
    background-size: 20px;
    border-radius: 50px;
    background-position: 8% 50%;
    width: 100%;
    padding-left: 45px;  
}
.search-align .dataTables_filter label{
color:#deebf7;
}

.program-right,
.program-left {
	flex: 0 0 22%;
}
.program-center {
	flex: 0 0 56%;
}



/* MEDIA QUERY START */

@media(max-width:1200px) {

    .transcation-details label,
    .withdrawn-fees__opt span {
        font-size: 12px;
    }
}

@media(max-width:1100px) {
    html {
        font-size: 80%;
    }

    .main-wrapper {
        padding-top: 133px;
    }

    .parnter-spacer {
        padding-top: 178px !important;
    }


    /* HEADER */

    .topbar {
        height: auto;
    }

    .topbar__block {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}



@media(max-width:991px) {

    /* HEADER */
    
    header{
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100;Blue+to+Transparent */
background: -moz-linear-gradient(top,  rgba(30,87,153,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#007db9e8',GradientType=0 ); /* IE6-9 */

    }

    /* RESPONSIVE MENU */

    .navbar-expand-lg {
        height: 100px;
    }

    header .navbar-nav {
        padding: 20px;
    }

    header .nav-item {
        margin-bottom: 10px;
    }

    header .navbar-nav > .nav-item:last-child {
        margin-bottom: 0;
    }

    /*.navigation-border {
        position: absolute;
        left: 0;
        top: 100px;
        background-color: #fff;
        width: 100%;
        left: 0;
    }
    */

    #navbarTogglerDemo03 {
       background-color: var(--secondary-bg);
        position: absolute;
        top: 100px;
        width: 100%;
        left: 0;
    }
    
    .dropdown{
        margin-right: 20px;
    }

    .navbar-nav .nav-item a {
        color: #fff !important;
        padding: 0px !important;
    }

    .navbar-nav .nav-item a {
        padding: 0px;
    }

    header .nav-link {
        height: auto;
    }

    .transcation-details__fields .col-md-4 {
        flex: 0 0 50%;
        max-width: 100%;
    }
    
    .navigation-border{
        border-bottom: none;
    }
    
    /* TRANSFER PAGE */
    
    .transcation-details__fields >div:nth-child(1){
        order: 1;
    }
    .transcation-details__fields >div:nth-child(2){
        order: 4;
    }
    .transcation-details__fields >div:nth-child(3){
        order: 7;
    }
    .transcation-details__fields >div:nth-child(4){
        order: 2;
    }
    .transcation-details__fields >div:nth-child(5){
        order: 5;
    }
    .transcation-details__fields >div:nth-child(6){
        order: 8;
    }
    
    .transcation-details__fields >div:nth-child(7){
        order: 3;
    }
    
    .transcation-details__fields >div:nth-child(8){
        order: 6;
    }
    
}


@media(max-width:767px) {

    .scrollable {
        overflow-y: auto;
        height: 290px;
    }    

    .topbar__block > div {
        padding: 0px 5px;
    }

    /* HERO SLIDER */

    .hero__content {
        top: 250px;
        -moz-transform: none;
        -webkit-transform: none;
        transform: none;
    }

    .hero .h-100 {
        min-height: 700px;
    }
    
    /* MAINTAINCE PAGE */
    
    .maintain-wrap{
        background-color: #002060;
    }
    

    /* FOOTER */

    .header-fixed-btm {
        position: static !important;
    }

    .profile__seprator {
        border-right: none;
        padding-right: 15px;
    }

    /* TRANSFER PAGE */
    .withdrawn-fees-wrap {
        margin-top: 24px;
    }
    
    
    /*  TRANSFER HISTORY */
    
    .table-filter {
	margin-bottom: 15px;
    }
    
    .filter-row td {
	width: 100%;
	display: inline-block;
    }

      /* PARTNER PAGE */
    
    .hero__subheading{
        position: static !important;
        transform: none !important;
    }
}

@media(max-width:667px) {

    .topbar__block > div {
        padding: 0px 15px;
    }

    .topbar__block__social span:first-child,
    .topbar__block__chat span {
        display: none;
    }

    /* HEADER */
    /* .topbar__block > div{
        padding: 0px;
        margin-bottom: 5px;
        border: none;
        width: 100%;
    }
    .topbar__block > div:last-child{
        margin-bottom: 0;
    }
    */

    /* HERO */

    .hero__content h1 {
        font-size: 2rem;
    }
}


@media(max-width:479px) {

      /* PARTNER PAGE */
    
      .hero__subheading{
        position: static !important;
        transform: none !important;
    }


    .topbar__block > div {
        padding: 0px 5px;
    }

    .topbar__block__social {
        display: none;
    }

    .topbar__block a {
        font-size: 11px;
    }

    .navbar-brand img {
        width: 100px !important;
    }

    /* TRANSFER PAGE */

    .transcation-details__fields .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .withdrawn-fees-wrap {
        margin-top: 5px;
    }

}


		
    /* HERO */
    .hero__content h1 {
        font-size: 2rem;
    }
}
@media(max-width:479px) {
    
    /* partner page */
    
    .hero__subheading{
        font-size: 1.50rem;
    }
    
}
@media(max-width:479px) {
    .topbar__block > div {
        padding: 0px 5px;
    }
    .topbar__block__social {
        display: none;
    }
    .topbar__block a {
        font-size: 11px;
    }
    .navbar-brand img {
        width: 100px !important;
    }
    /* TRANSFER PAGE */
    .transcation-details__fields .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .withdrawn-fees-wrap {
        margin-top: 5px;
    }
}
    .colon-code{
        position: relative;
    }
    
    .colon-code::after{
        content: ":";
        position: absolute;
        right: 10px;
    }
.search-align .dataTables_scrollBody{
    margin-bottom: 30px;
}
#subscribtion .modal-header button.close {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-0%, -50%);
    margin: 0;
}
#subscribtion  .modal-header { 
    position: relative; 
    justify-content: center; 
}
#partnerContract .modal-header {
    justify-content: center;
    position: relative;
}
#partnerContract .modal-header button.close {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-0%, -50%);
    margin: 0;
}
.benificary {
    background-color: #FFD966 !important;
}
