:root {
    --color-primary: #FE661D;
    --color-secondary: rgba(255, 255, 255, 1);
}

@font-face {
    font-family: "Anirb";
    src: url(./assets/fonts/anirb___.ttf);
}

@font-face {
    font-family: "Tngani";
    src: url(./assets/fonts/tngani.ttf)
}

@font-face {
    font-family: "Tngan";
    src: url(./assets/fonts/tngan.ttf)
}

@font-face {
    font-family: "Partybusiness";
    src: url(./assets/fonts/partybusiness.ttf)
}

.skew {
    transform: skewX(-20deg);
}

.un-skew {
    transform: skewX(20deg);
}

body {
    font-family: "Anirb" !important;
}

h2 {
    font-size: 48px;
    font-weight: 400;
}

th {
    border-bottom: 3px solid #000 !important;
}

.color-primary {
    color: var(--color-primary)
}

.body-one {
    font-family: "Partybusiness";
    line-height: 1.5;
}

.panel {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding-bottom: 4px;
}

.dead {
    position: relative;
}

.dead::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 80px;
    height: 4px;
    width: 50%;
    background: var(--color-primary);
}

/* Utilities */

.is-dead {}

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

.background-white {
    background-image: url(./assets/img/bg_light.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.background-black {
    background-image: url(./assets/img/bg_dark.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.text-white-secondary {
    color: rgba(255, 255, 255, .7)
}

.navbar {
    font-size: 12px;
}

.link {
    margin: 10px 20px!important;
    color: var(--color-secondary);
    position: relative;
    padding: 0 8px;
}

.navbar-collapse .link{
    border-bottom: 4px solid transparent;
}

.navbar-collapse .link:hover {
    border-bottom: 4px solid white;
    color: white;
}

.navbar-collapse .active {
    border-bottom: 4px solid white;
}

.button {
    text-align: center;
    padding: 2px 8px;
}

.price {
    width: 140px;
}

.w-100px {
    width: 100px;
}

.link::before {
    position: absolute;
    content: '';
    top: 0;
    right: -15px;
    width: 2Px;
    height: 16px;
    background: white;
}

.title-capsule {
    font-family: "Tngani";
    color: rgba(254, 102, 29, .7);
    font-size: 25px;
    vertical-align: top;
}

.text-color-primary {
    color: var(--color-primary)
}

.tab-capsule {
    font-family: "Tngani";
    color: rgba(254, 102, 29, .8);
    font-size: 20px !important;
    opacity: 0;
    transition: .3s;
}

.nav-link {
    padding: 0;
    margin: 0 10px;
    border-radius: 0 !important;
}

.tab-layout {
    border-bottom: 4px solid transparent;
    justify-content: space-evenly
}

.tab-item {
    flex-basis: unset !important;
    flex-grow: unset !important;
}

.tab-layout a:hover, .tab-layout .is-active {
    color: var(--color-primary) !important;
    border-bottom: 4px solid var(--color-primary);
}

.tab-layout .is-active .tab-capsule, .tab-layout a:hover .tab-capsule {
    opacity: 1;
}

.profile:last-child {
    margin-right: 0;
}

.profile .identity, .profile .reward {
    left: 50%;
    -webkit-transition: .2s all;
    transition: .2s all;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.identity {
    width: 100%;
    text-align: center;
}

.hide-overflow {
    overflow: hidden;
}

.profile::before, .profile .identity, .profile .reward {
    position: absolute;
}

.profile {
    position: relative;
}

.is-dead .card-image::before {
    background: rgba(0, 0, 0, .6);
}

.is-dead .reward {
    background: transparent !important;
}

.card-image::before {
    content: '';
    bottom: 3px;
    right: 3px;
    position: absolute;
    background: rgba(255, 255, 255, .4);
    width: 98%;
    height: 98%;
}

.card-image:hover::before {
    background: rgba(255, 255, 255, 0);
}

.card-image:hover>.identity {
    bottom: 10%;
    -webkit-transition-duration: 0s, 1s;
    transition-duration: 0s, 1s;
    -webkit-animation: fade-in-shrink 1s forwards;
    animation: fade-in-shrink 1s forwards;
    opacity: 0;
    opacity: 1;
}

@-webkit-keyframes fade-in-shrink {
    0% {
        font-size: 20px;
        opacity: 0;
    }
    100% {
        font-size: 20px;
    }
}

@keyframes fade-in-shrink {
    0% {
        font-size: 20px;
        opacity: 0;
    }
    100% {
        font-size: 20px;
    }
}

.card-image:hover>.reward {
    opacity: 0;
}

.reward-value {
    color: #ff5722;
}

.profile .reward {
    top: 24px;
    display: inline-block;
    width: 85%;
    padding: 12px 20px;
    text-align: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
}

.card-image {
    height: 100%;
    width: 100%;
}

.profile .identity {
    bottom: 35%;
}