@charset "utf-8";
@font-face {
    font-family: 'AktivGrotesk-XBold';
    src: url('../fonts/AktivGrotesk/AktivGrotesk-XBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'AktivGrotesk';
    src: url('../fonts/AktivGrotesk/AktivGrotesk-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'AktivGrotesk';
    src: url('../fonts/AktivGrotesk/AktivGrotesk-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'AktivGrotesk';
    src: url('../fonts/AktivGrotesk/AktivGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'AktivGrotesk';
    src: url('../fonts/AktivGrotesk/AktivGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'AktivGrotesk';
    src: url('../fonts/AktivGrotesk/AktivGrotesk-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'AktivGrotesk';
    src: url('../fonts/AktivGrotesk/AktivGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN/DIN-Black.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN/DIN-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN/DIN-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN/DIN.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ForeverFreedom';
    src: url('../fonts/Forever-Freedom-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ForeverFreedomOutline';
    src: url('../fonts/Forever-Freedom-Outline.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
    --blue: #0a3ad8;
    --white: #fff;
    --black: #000;
    --gray: #f7f7f7;
    --green: #496043;
    --gold: #b0803a;
    --orange: #fc4401;
    --marema:  #F7F0BF;
}

body {
    font-family: "AktivGrotesk", Arial, sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    color: #888888;
    background-color: #000;
    /*-webkit-backface-visibility: hidden;*/
    overflow-x: hidden;
}
p {
    font-family: 'AktivGrotesk', serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 32px;
    color: #000000;
}
img {
    max-width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'AktivGrotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 64px;
    color: #000000;
    margin: 0 0 26px;
}
h1 {
    font-size: 1.5rem;
}
h2 {
    font-size: 3rem;
    line-height: 1.4;
}
h3 {
    font-size: 1.2rem;
}
h4 {
    font-size: 21px;
    line-height: 30px;
}
h5 {
    font-size: 18px;
    line-height: 28px;
}
h6 {
    font-size: 15px;
    line-height: 23px;
}
iframe {
    overflow: hidden;
    border: none;
}
button:hover,
button:active,
button:focus{
    outline: none;
    box-shadow: none;
}

@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}
a {
    color: var(--orange);
    transition: all 0.3s ease;
    text-decoration: none !important;
    outline: none !important;
}
a:active,
a:hover {
    text-decoration: none;
    outline: 0 none;
    color: var(--orange);
}
ul{
    list-style-type: disc;
    font-size: 16px;
    font-weight: 400;
    color: #454545;
    padding-inline-start: 40px;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none !important;
}
/* ------------------------------------
    BTN
---------------------------------------*/
.btn {  
    font-family: 'DIN';
    font-size: 16px;
    line-height: 1;
    border-radius: 0;
    color: #000;
    background-color: #fff;
    /*min-width: 200px;*/
    padding: 12px 20px 8px !important;
    display: inline-flex;
    align-items: center;
    text-transform: initial;
    justify-content: center;
    font-weight: 500;
    border: 2px #000 solid;
}
.btn:hover{
    opacity: 0.9;
    color: #fff;
}
.btn:focus,
.btn:active{
    outline: none;
    box-shadow: none;
}
.btn-black{
    color: var(--white) !important;
    background-color: var(--black) !important;
    border: 2px var(--black) solid !important;
}
.btn-black:hover,
.btn-black:active{
    background-color: #2c2c2c !important;
    border: 2px #2c2c2c solid !important;
}
.btn-black-outline{
    color: var(--black) !important;
    background-color: transparent !important;
    border: 2px var(--black) solid !important;
}
.btn-black-outline:hover,
.btn-black-outline:active{
    color: var(--white) !important;
    background-color: var(--black) !important;
    border: 2px var(--black) solid !important;
}
.btn-white-outline{
    color: var(--white) !important;
    background-color: transparent !important;
    border: 2px var(--white) solid !important;
}
.btn-white-outline:hover,
.btn-white-outline:active{
    color: var(--black) !important;
    background-color: var(--white) !important;
    border: 2px var(--white) solid !important;
}


.bg-light{
    background-color: #f5f5f5 !important;
}
.portal-traacsa{
    margin: 50px 40px;
    height: calc(100vh - 100px);
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    background-color: #fff;
}
a.disabled{
    pointer-events: none !important;
    opacity: 0.2;
}
.border-2px-black{
    border: 2px black solid;
}
.invalid-feedback {
    margin-top: 0;
}
/*------------------------------------
    NAVIGATION
--------------------------------------*/
.cbp-af-header {
    -webkit-transition : all 0.3s ease-out;
    transition : all 0.3s ease-out;
    border-bottom: 3px solid #E5E5E5;
    background-color: #ffffff;
    /*background-color: var(--black);*/
    /*border-bottom: 1px solid rgb(78 78 78);*/
}
.cbp-af-header.cbp-af-header-shrink {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: saturate(1) blur(20px) !important;
    -o-backdrop-filter: saturate(1) blur(20px) !important;
    -ms-backdrop-filter: saturate(1) blur(20px) !important;
    backdrop-filter: saturate(1) blur(20px) !important;
    border-bottom: 1px solid #edeef1;
    -webkit-transition : all 0.3s ease-out;
    transition : all 0.3s ease-out;
}
.navigation-wrap{
    position: fixed;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0px;
}
.navbar{
    padding: 0;
}
.navbar-brand{
    position: relative;
    height: 30px;
    display: block;
    margin: 0;
    padding: 0;
    -webkit-transition : all 0.3s ease-out;
    transition : all 0.3s ease-out;
}
.navbar-brand img{
    height: 100%;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}
.navbar-toggler {
    float: right;
    border: none;
    padding: 0;
    transition: color 300ms linear;
}
.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}
.navbar-light .navbar-toggler-icon {
    width: 16px;
    height: 18px;
    background-image: none;
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    margin-right: 7px;
    border-bottom: 2px solid var(--orange);
    transform: translateX(8px);
}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before{
    width: 16px;
    position: absolute;
    height: 2px;
    background-color: var(--orange);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transform: translateX(-8px);
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
    top: 8px;
    width: 24px;
    left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: translateX(-8px) rotate(45deg);
    width: 24px;
    left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translate(-8px, 8px) rotate(-45deg);
    width: 24px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
    transition: all 300ms linear;
}
.nav-item{
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
    -webkit-transition : all 0.3s ease-out;
    transition : all 0.3s ease-out;
}
.navbar-light .navbar-nav .nav-link {
    font-family: 'DIN';
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    position: relative;
    margin: 0;
    padding: 3px 15px;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #000;
}
.nav-link:hover{
    background-color: #E5E5E5;;
}
.navbar-light .navbar-nav .active>.nav-link, 
.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-link.show, 
.navbar-light .navbar-nav .show>.nav-link {
    background-color: #E5E5E5;;
}
.btn-user{
    width: 40px;
    height: 40px;
    background-color: #D9D9D9;
}


/* ------------------------------------
    LOGIN
---------------------------------------*/
.portal-login{
    margin: 50px 40px;
    height: calc(100vh - 100px);
    /*height: 100vh;*/
    /*display: flex;*/
    /*align-items: center;*/
    background-color: #fff;
}
.portal-login img{
    margin-bottom: 40px;
}
.portal-login h1{
    font-family: 'ForeverFreedom';
    font-weight: 400;
    font-size: 90px;
    line-height: 60px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}
.portal-login p{
    font-family: 'DIN';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}
.portal-login p a{
    font-weight: 500;
    color: #000;
}
.portal-login .login-copy{
    position: absolute;
    left: 40px;
    bottom: 10px;
    width: 100%;
}
.portal-login .login-copy p,
.portal-login .login-copy a{
    display: inline-block;
    margin: 0;
    color: #fff;
    font-weight: 400;
}
.portal-login .login-copy p:last-child{
    margin-left: 30%;
}
.portal-login-welcome{
    margin-top: 100px;
}
.portal-login-welcome h2{
    font-family: 'AktivGrotesk';
    font-weight: 900;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #000209;
}
.portal-login-welcome h2 span{
    font-style: italic;
    display: block;
}

/* ------------------------------------
    PORTAL CONTENT ADMIN
---------------------------------------*/
.portal-content{
    background-color: #f5f5f5;
    margin-top: 70px;
    min-height: calc(100vh - 130px);
    
}
.portal-content .portal-content-header{
    padding: 80px 0 20px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    border-bottom: 3px solid #E5E5E5;
}
.portal-content .portal-content-header h2{
    font-family: 'AktivGrotesk';
    font-weight: 900;
    font-size: 38px;
    line-height: 25px;
    color: #000000;
    margin: 0;
}
.portal-content .portal-content-header p{
    font-family: 'DIN';
    font-weight: 400;
    color: #000000;
    margin: 0;
}
.portal-content .portal-content-header .btn{
    padding: 15px 20px 12px !important;
}
.portal-content .portal-content-body{
    padding: 70px 0;
}
.dashboard-item{
    height: 300px;
    background-color: var(--white);
    border-radius: 0;
    padding: 50px 50px;
    text-align: center;
}
.dashboard-item h3{
    font-family: 'DIN';
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    margin: 25px 0 22px;
}
.dashboard-item p{
    font-family: 'DIN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}

.table-traacsa{
    background-color: var(--white);
}
.table-traacsa .btn{
    min-width: 50px !important;
    font-size: 16px !important;
}
.table-traacsa.table-row-bordered tr {
    border-bottom: 3px #EFF2F5  solid;
}
.table-traacsa.table-row-bordered tr th:last-child,
.table-traacsa.table-row-bordered tr td:last-child{
    border-left: 3px #EFF2F5  solid;
}
.table-traacsa.table-row-bordered thead tr {
    font-family: 'DIN';
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #979797;
}
.table-traacsa.table-row-bordered tbody tr {
    font-family: 'DIN';
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    vertical-align: middle;
}
.table-traacsa.table-row-bordered tbody tr td:first-child{
    font-weight: 500;
}
.page-item.active .page-link {
    background-color: var(--black);
    border-radius: 0;
}
.page-item.next .page-link, .page-item.previous .page-link {
    background-color: transparent;
    color: var(--black);
}
.form-select.form-select-solid {
    background-color: #e5e5e5 !important;
    border-color: #F5F8FA !important;
    color: #5E6278;
}


/* ------------------------------------
    HEADER HOME
---------------------------------------*/
.portal-header{
    height: 90vh;
    position: relative;
    display: flex;
    overflow: hidden;
}
.portal-header .header-logo{
    position: absolute;
    left: 70px;
    top: 40px;
    z-index: 2;
}
.portal-header .section-one { 
    background-size: cover;
    background-repeat: no-repeat;
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    height: 90vh;
    padding: 0 70px 75px;
    position: relative;
    width: 65%;
}
.portal-header .section-one .section-one-content .play-icon{
    position: absolute;
    right: 40px;
    bottom: 40px;
}
.portal-header .section-one .section-one-content{
    z-index: 1;
    width: 70%;
}
.portal-header .section-one span,
.portal-header .section-two .section-two-a span,
.portal-header .section-two .section-two-b span{
    font-family: 'DIN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    background-color: #000;
    padding: 5px 10px;
}
.portal-header .section-one h2,
.portal-header .section-two .section-two-a h2,
.portal-header .section-two .section-two-b h2{
    font-family: 'AktivGrotesk';
    font-weight: 900;
    font-size: 45px;
    line-height: 50px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 15px 0 10px;
}
.portal-header .section-one p{
    font-family: 'DIN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.portal-header .section-one:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%);
    z-index: 1;
}

.portal-header .section-two { 
    width: 35%;
    background-color: red;
    position: relative;
}
.portal-header .section-two-a{
    background-color: #000;
    height: 60%;
    display: flex;
    align-items: center;
    padding: 0 70px;
    text-align: center;
    flex-wrap: wrap;
    align-content: center;
    position: relative;
}
.portal-header .section-two-a .user-icon{
    width: 100%;
    text-align: right;
    display: block;
    margin-bottom: 20px;
}
.portal-header .section-two-a .user-icon i{
    color: #fff;
    font-size: 30px;
}
.portal-header .section-two-b{
    background-color: #e5e5e5;
    height: 40%;
    display: flex;
    align-items: center;
    padding: 0 70px;
    text-align: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.portal-header .section-two-b p{
    font-family: 'AktivGrotesk';
    font-weight: 400;
    font-size: 60px;
    color: #000;
}
.portal-header .section-two-a:before,
.portal-header .section-two-b:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}

/* ------------------------------------
    PORTAL OPTIONS
---------------------------------------*/
.portal-options{
    padding: 100px 0;
    background-color: #fff;
}
.portal-options .portal-options-title h2{
    font-family: 'AktivGrotesk';
    font-weight: 900;
    font-size: 40px;
    line-height: 50px;
    color: #000209;
    text-transform: uppercase;
}
.portal-options .option-box{
    height: 500px;
    background: #E5E5E5;
    border-radius: 20px;
    padding: 50px 50px;
    text-align: center;
}
.portal-options .option-box .option-box-title{
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portal-options .option-box h2{
    font-family: 'AktivGrotesk';
    font-weight: 900;
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}
.portal-options .option-box .icon{
    margin: 30px 0;
}
.portal-options .option-box p{
    font-family: 'DIN';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 30px;
}

/* ------------------------------------
    PORTAL NEWS
---------------------------------------*/
.portal-news{
    padding: 100px;
    background-color: #f3f3f3;
}
.portal-news .portal-news-title h2{
    font-family: 'AktivGrotesk';
    font-weight: 900;
    font-size: 38px;
    line-height: 50px;
    color: #000209;
    text-transform: uppercase;
}
.portal-news .portal-news-title p{
    font-family: 'DIN';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000209;
}
.news {
    height: 100%;
    min-height: 710px;
}
.news-wrap {
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
    height: 100%;
}
.news-wrap .slider-num{
    position: absolute;
    right: 19%;
    top: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C4C4C4;
    font-family: 'DIN';
    font-weight: 400;
    font-size: 30px;
    color: #000;
    z-index: 16;
}
.news-sliders .news-slider {
    display: block;
    position: absolute;
    transition: transform 0.5s;
    width: 75%;
    margin: 0 auto;
    left: 0;
    right: 15%;
}
.news-sliders .news-slider:first-child {
    z-index: 10 !important;
    transform: rotateY(0deg) translateX(0px) !important;
}
.news-sliders .news-slider .news-slider-content{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.news-sliders .news-slider .news-slider-content .info{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    overflow: hidden;
}
.news-sliders .news-slider .news-slider-content .info h2{
    font-family: 'AktivGrotesk';
    font-weight: 900;
    font-size: 40px;
    line-height: 50px;
    color: #000209;
    text-transform: uppercase;
}
.news-sliders .news-slider .news-slider-content .info p{
    font-family: 'DIN';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000209;
}
.news-sliders .news-slider[data-position="2"] {
    z-index: 9;
    transform: rotateY(0deg) translate(40px, 40px);
}
.news-sliders .news-slider[data-position="3"] {
    z-index: 8;
    transform: rotateY(0deg) translate(80px, 80px);
}
.news-sliders .news-slider[data-position="4"] {
    z-index: 7;
    transform: rotateY(0deg) translate(120px, 120px);
}
.news-sliders .news-slider:hover:not(:first-child) { cursor: pointer; }
.news-next,  .news-prev {
    position: absolute;
    bottom: 50px;
    width: 70px;
    height: 70px;
    right: 15%;
    z-index: 10;
    cursor: pointer;
}
.news-prev {
    right: 30%;
}
.news-dots {
    position: absolute;
    bottom: 0;
    z-index: 12;
    left: 0;
    cursor: default;
    margin: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}
.news-dots li {
    display: inline-block;
    width: 100px;
    height: 10px;
    background-color: #c4c4c4;
    margin: 0 2px;
}
.news-dots li:hover {
  cursor: pointer;
  background: #FA8C8C;
  transition: background .3s;
}
.news-dots li.active { background: #000; }



/* ------------------------------------
    PORTAL BANNERS
---------------------------------------*/
.portal-banners .swiper-horizontal>.swiper-pagination-bullets{
    bottom: 50px;
    left: 0;
    width: 100%;
}
.portal-banners .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 100px;
    border-radius: 0;
    background: #c4c4c4;
    opacity: 1;
}
.portal-banners .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active{
    background: #000;
}

/* ------------------------------------
    PORTAL AFFILIATE
---------------------------------------*/
.portal-affiliate{
    height: 100vh;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.portal-affiliate:after{
    content: '';
    background-image: url('../images/affiliate-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 50vw;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
}
.portal-affiliate h2{
    font-family: 'ForeverFreedomOutline';
    font-weight: 400;
    font-size: 90px;
    line-height: 100px;
    color: #000209;
}
.portal-affiliate h3{
    font-family: 'AktivGrotesk';
    font-weight: 500;
    font-size: 30px;
    line-height: 60px;
    color: #000209;
    text-transform: uppercase;
}
.portal-affiliate span{
    font-family: 'AktivGrotesk';
    font-weight: 900;
    display: block;
    font-size: 60px;
}
.portal-affiliate p{
    font-family: 'DIN';
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: justify;
    color: #000209;
    padding-right: 20%;
}


/* ------------------------------------
    PORTAL CONTACT
---------------------------------------*/
.portal-contact {
    height: 90vh;
    position: relative;
    align-items: center;
    display: flex;
    background-color: #fff;
}
.portal-contact .header-logo{
    position: absolute;
    left: 70px;
    top: 40px;
    z-index: 2;
}
.portal-contact h2 {
    font-family: 'ForeverFreedom';
    font-weight: 400;
    font-size: 120px;
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}
.portal-contact p {
    font-family: 'DIN';
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #000000;
    margin: 3.3rem 0;
}
.portal-contact label {
    font-family: 'DIN';
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
    color: #000000;
}
.portal-contact textarea {
    font-family: 'DIN';
    font-weight: 500;
    font-size: 17px;
    color: #000000;
    border: none;
    border-radius: 0;
    background: transparent;
    border: 2px black solid;
    height: 100px;
    padding: 1rem;
}
.portal-contact .btn-black-outline {
    width: 70%;
}




.vacant-item-detail p{
    font-family: 'AktivGrotesk';
    font-weight: 600;
    font-size: 14px;
    line-height: 30px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.vacant-item-detail h2{
    font-family: 'DIN';
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
}
/*.form-control-tracsa input[type="text"],
.form-control-tracsa input[type="tel"],
.form-control-tracsa input[type="email"],
.form-control-tracsa input[type="password"],*/
.form-control-tracsa{
    position: relative;
    font-family: 'DIN';
    font-weight: 400;
    font-size: 20px;
    color: #000000 !important;
    border: none !important;
    border-radius: 0;
    border-bottom: 2px black solid !important;
    padding: 0;
    background: url(https://traacsa.net/wp-content/uploads/2022/05/arrow-black.png) no-repeat scroll 100% 50%;
    padding: 10px 45px 10px 0;
    margin-bottom: 20px;
}
.form-control-tracsa-textarea{
    font-family: 'DIN';
    font-weight: 500;
    font-size: 17px;
    color: #000000 !important;
    border: none;
    border-radius: 0;
    background: transparent;
    border: 2px black solid;
    height: 100px;
    padding: 1rem;
}
.form-control-tracsa::placeholder{
    color: #000000;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
}
.form-control-tracsa:hover,
.form-control-tracsa:focus,
.form-control-tracsa:active{
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent;
    border-color: #000;
}
input[type="text"].form-search{
    font-family: 'DIN';
    font-size: 16px;
    line-height: 1;
    border-radius: 0;
    color: #000;
    background-color: #fff;
    min-width: 200px;
    padding: 15px 20px 12px !important;
    display: inline-flex;
    align-items: center;
    text-transform: initial;
    justify-content: center;
    font-weight: 400;
    border: 2px #000 solid;
    background-image: none;
    text-transform: initial;
}
input[type="text"].form-search::placeholder{
    font-size: 16px !important;
    color: #000 !important;
    text-transform: initial !important;
}
.form-label {
    font-family: 'DIN';
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #000209;
}
.form-control,
.form-select{
    color: var(--black);
    background-color: transparent;
    border: 2px #000 solid;
    border-radius: 0;
}



.modal_payments .modal-dialog {
    width: 95vw;
    max-width: none; 
}
.modal_payments .modal-content {
    height: calc(100vh - 60px);
    border-radius: 0;
    border: none; 
    background-color: #fff;
    position: relative;
}
.modal_payments .modal-content .modal-closetr{
    position: absolute;
    right: -15px;
    top: -15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    z-index: 1;
    border: none;
}
.modal_payments .modal-content .modal-body {
    overflow-y: auto; 
    overflow-x: hidden;
    margin: 0;
    padding: 2rem;
    background-color: #fff;
}
.modal_payments .modal-content .modal-body h2{
    font-family: 'AktivGrotesk';
    font-weight: 900;
    font-size: 30px;
    line-height: 20px;
    text-transform: uppercase;
    color: #000000;
}
.table-payments {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.table-payments thead > tr th {
    font-family: 'DIN';
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #E5E5E5;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 15px 10px;
    line-height: 1;
}
.table-payments thead > tr th:first-child{
    border: none;
    background-color: transparent;
}
.table-payments tbody tr{
    vertical-align: middle;
}
.table-payments tbody tr td{
    padding: 10px;
    border: 1px solid #E5E5E5;
    font-family: 'DIN';
    font-weight: 400;
    font-size: 15px;
    background-color: #ffffff;
    margin-bottom: 14px;
    line-height: 1;
    text-align: center;
}
.table-payments tbody tr td:nth-child(2){
    text-align: left;
}
.table-payments tbody tr td:nth-child(2) a{
    float: right; 
    padding-right: 10px;
}
.table-payments tbody tr td:nth-child(2) a.disabled{

}
.table-payments tbody tr td:nth-child(odd){
    background-color: #E5E5E5;
}
.table-payments tbody tr td:first-child{
    border: none;
    background-color: transparent;
    width: 50px;
    padding: 10px 0;
}
.table-payments tbody tr td.payment-success:last-child{
    background-color: #D8FFE5;
    color: #000;
    min-width: 80px;
}
.table-payments tbody tr td.payment-pending:last-child{
    background-color: #F8E2E2;
    color: #000;
    min-width: 80px;
}
.table tbody tr:last-child td {
    border-bottom: 1px #eff2f5 solid !important;
}


/* ------------------------------------
    FOOTER
---------------------------------------*/
footer{
    background-color: #000;
    padding: 20px 0;
}
footer p,
footer p a{
    font-family: 'DIN';
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0;
}


@media (max-width: 991px){
    .navbar{
        padding: 20px;
    }
    .navbar .logo{
        width: 100px;
    }
    .nav-title-section{
        display: none !important;
    }
    .contact {
        height: auto;
        padding: 4rem 0;
    }
    .contact .contact-nav {
        display: none;
    }
    footer p, footer p a {
        font-size: 15px;
    }
    .modal.modal_payments .modal-content .modal-body {
        margin: 0rem;
    }
    .modal.modal_payments .modal-content .modal-closetr img {
        width: 200px !important;
    }

}

.grecaptcha-badge {
    visibility: collapse !important;
}
.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 10px); }
    100% { transform: translate(0, -0px); }
}
.form-check.form-check-custom {
    display: flex;
    padding-left: 0;
    margin: 0;
}
.form-switch.form-check-solid .form-check-input {
    height: 22px;
    width: 35px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 3.25rem;
    border: 0;
    background-color: #C4C4C4;
    margin: 0;
    float: none;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: background-position 0.15s ease-in-out;
    background-repeat: no-repeat;
    vertical-align: top;
    background-size: contain;
}
.form-switch.form-check-solid .form-check-input:checked {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFFFFF'/%3e%3c/svg%3e");
    background-color: #B0EFC5;
    background-position: right center;
}
.form-switch.form-check-solid .form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.2;
}

/* CUSTOM BUNDLE */
.swal2-icon.swal2-warning {
    border-color: #f1416c;
    color: #f1416c;
}
.fv-plugins-bootstrap5 .fv-plugins-icon {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 45px;
    width: 45px;
    right: 0 !important;
}
.blockui .blockui-overlay {
    background-color: #ffffffc2;
}
.stepper.stepper-pills .stepper-item.current .stepper-icon {
    background-color: #000000;
}
.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon, 
.stepper.stepper-pills .stepper-item.completed .stepper-icon,
.stepper.stepper-pills .stepper-item .stepper-icon {
    background-color: #e5e5e5;
}
.stepper.stepper-pills .stepper-item .stepper-icon .stepper-number {
    color: #7c7c7c !important;
}
.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-check, 
.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-check {
    color: #000000 !important;
}
.dropzone{
    position: relative;
    border: 2px dashed #e5e5e5;
    background-color: #f5f5f5;
    border-radius: 0 !important;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dz-max-files-reached {
    pointer-events: none !important;
    cursor: default !important;
}
.dz-max-files-reached .dz-remove,
.dz-max-files-reached .dz-preview{
    pointer-events: initial !important;
    cursor: pointer !important; 
}
.dz-max-files-reached .dz-message{
    display: none !important;
}
/*.dropzone [type="file"] {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}*/
.dropzone .dz-message {
    margin: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}
.dropzone .dz-message i{
    color: #000000;
}
.dropzone-file .drop-info h3{
    margin: 20px 0 0;
    line-height: 1;
    font-family: 'AktivGrotesk';
    font-weight: 900;
    font-size: 25px;
    color: #000000;
}
.dropzone-file .drop-info p{
    font-family: 'DIN';
    font-weight: 400;
    color: #000000;
    margin: 10px 0;
    line-height: 1;
}
.modal-header h2{
    font-size: 30px;
    line-height: 1;
    margin: 0;
    font-family: 'AktivGrotesk';
    font-weight: 900;
    color: #000000;
}
.h-140px{
    height: 140px;
}
/*.kt_repeater_finance [data-repeater-item]:first-child [data-repeater-delete] { display: none !important; }*/
