// THEME
$font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

$font-white: #fff;
$font-white-50: rgb(255 255 255 / 50%);
$font-white-75: rgb(255 255 255 / 75%);
$font-black: #222;
$black: #000;

$main-text-color: #fff;
$color-danger : #dc3545!important;
$yellow: #fde501;
$yellow-orange: #FFD24F;

$transition : .3s ease !important;


$main-color: #3ab49a;
$main-color-50: #3ab49aaa;
$main-color-00: #3ab49a00;
$main-text-color: #fff;
$main-masthead: ''; // url('/assets/images/cl/_main/Plant-Rewards_Masthead.png');
$main-bg:  ''; // url('/assets/images/cl/_main/CL_PR_BG.png');

@mixin background-default{
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: contain;
}

@mixin primary-btn {
    background-color: $yellow !important;
    color: $font-black !important;
    font-family: $font-family;
    font-weight: bold;
    border: none;
}


// general styles
body{
    //@include background-default;
    //background-color: $main-color;
    //background-image: $main-bg;
    font-weight: normal;
    overflow-x: hidden;
    line-height: 1.2;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    @media screen and (max-width: 320px) {
        font-size: 12px;
    }
    #navbar-brand {
        height: 100%;
        width: 80px;
        min-height: 50px;
        background-repeat: no-repeat;
        display: block;
        background-position: 50% 50%;
        background-size: contain;
    }
    .masthead-main, .masthead-popup{
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 50% 50%;
    }
    .masthead-main{
        height: 200px;
        width: 400px;
    }
    .masthead-popup{
        height: 200px;
        width: 100%;
    }
    .bg-layer {
        z-index: -9999;
        position: fixed;
        height: 100vh;
        top: 0;
        left: 50%;
        transform: translateX(-50%);

        .bg-layer-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            //background: $main-color;
            //background: linear-gradient(90deg, $main-color 0%, $main-color-00 2%, $main-color-00 98%, $main-color 100%);
        }

        .bg-layer-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: 50% 0%;
            //background-color: $main-color;
            //background-image: $main-bg ;
        }
    }
    .bg-color{
        background-color : $main-color-50;
    }
    .masthead-img{
        margin: 0 auto;
        max-width: 400px;
        height: 25vw;
        max-height: 250px;
        min-height: 150px;
        @include background-default;
        background-position: 50% 100%;
        background-image: $main-masthead !important;
        &.big{
            height: 60vw;
        }
    }

    input, select {
        font-family: $font-family;
    }

    h1, h2, h3, h4, h5, h6 {
        margin: 10px auto;
        font-weight: bold;
    }

    b, .bold {
        font-weight: bold;
    }

    a {
        color: inherit;
        transition: $transition;
        &:hover{
            color: inherit;
            opacity: .5;
        }
    }

    small, .small {
        //margin: 10px auto;
        font-size: .7rem;
        //color: $font-white-75;
    }
    .small {
        &-2 {
            font-size: 0.8rem;
        }
        &-3 {
            font-size: 0.9rem;
        }
    }
    .underline{
        text-decoration: underline;
    }

    img {
        object-fit: contain;
    }
    .cursor-pointer {
        cursor: pointer;
        transition: $transition;
        &:hover{
            opacity: .7;
        }
    }

    .-z-1 {
        z-index: -1;
    }

    .z-0 {
        z-index: 0;
    }

    .z-1 {
        z-index: 1;
    }

    .z-2 {
        z-index: 2;
    }

    .z-10 {
        z-index: 10;
    }

    .rounded-sm {
        border-radius: 0.125rem;
    }

    .rounded {
        border-radius: 0.375rem;
    }

    .rounded-md {
        border-radius: 0.375rem;
    }

    .rounded-lg {
        border-radius: 0.5rem;
    }

    .opacity-50 {
        opacity: .5;
    }

    .opacity-100 {
        opacity: 1;
    }
}

@mixin font-style  {
    color: #fff;
    font-family: $font-family;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 10%);
}
#app{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}
#app, .modal, .bottom_ui:before{
    @include font-style
}

button, .btn {
    transition: $transition;
    font-weight: 700;

    &:focus, &:hover {
        outline: none;
        webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        opacity: .9;
    }

    a {
        text-decoration: none;
    }

    &.btn-collect {
        &.disabled {
            display: none;
        }

        &.claimable {
            font-size: 16px;
            line-height: 32px;
            background-color: $yellow-orange;
            border: 0px;
            color: #3A2178;
            cursor: pointer;
            width: 100%;
            border-radius: 0 5px 5px 0;
        }
    }
}

.btn-primary:not(.daterangepicker *) {
    @include primary-btn;
    display: block;
    margin: 0 auto;
    padding: .5em 2.5em;

    &[disabled], &.disabled {

        transition:none !important;
        background: #989898 !important;
        cursor: default;
        opacity: 1;
        color: #fff !important;
        &:hover {
            background: #989898 !important;
            color: #fff !important;
            opacity: 1;
        }
    }

    &:hover, &:focus, &:target, &:active {
        @include primary-btn;
        opacity: .5;
    }
}

.footer {
    background : #0d1122;
    //background: rgb(248,150,39);
    //background: linear-gradient(90deg, rgba(248,150,39,1) 0%, rgba(249,201,73,1) 100%);
}

.install-toast{
    text-align: left;
    z-index: 10;
    //position: absolute;
    //top: calc(100vh - 220px );
    color: $font-white;
    flex-basis: unset;
    //text-shadow: none;

    #install-app{
        display:flex;
        border-radius: 5px;
        padding: 10px;
        color: $font-black;
        background: $font-white-50;
        text-shadow: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
}

.register-footer{
    @media only screen and (max-width: 767px) {
        .logo-3d, .logo-ecm, .logo-tm {
            width: 20%;
        }
        .logo-gp {
            width: 11%;
        }
        .logo-mm {
            width: 12%;
        }
        .logo-sw, .logo-qm {
            width: 25%;
        }
    }

    @media only screen and (max-width: 370px) {
        .logo-3d, .logo-ecm, .logo-tm {
            width: 18%;
        }
        .logo-gp, .logo-mm {
            width: 10%;
        }
        .logo-sw, .logo-qm {
            width: 23%;
        }
    }

    @media only screen and (max-width: 320px) {
        .logo-3d, .logo-ecm, .logo-tm {
            width: 17%;
        }
        .logo-mm {
            width: 10%;
        }
        .logo-sw, .logo-qm {
            width: 20% !important;
        }
    }
}


// not in use
.popup {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: RGBA(0, 0, 0, 0.8);
    z-index: 3;
}


$masthead-bottom-space: -8.5rem; //-5rem;

.main-masthead {
    margin-bottom: $masthead-bottom-space;
    // @media only screen and (min-width: $screen-desk-width) {
    //     margin-bottom: -2.5rem;
    // }
}

.main-section {
    max-width: 500px !important;
    width: calc(100% - 20px);
    margin: 0 auto;
    border-radius: 1.5rem;
    height: auto;
    min-height: calc(5rem + 200px);
    //box-shadow: 1px 5px 4px #00000029;
    overflow: hidden;
    padding-top: calc(#{$masthead-bottom-space} * -1);
    // @media only screen and (min-width: $screen-desk-width) {
    //     padding-top: 2.5rem;
    // }
}


// registration otp
input.codebox{
    width: 11vw;
    height: 11vw;
    max-height: 45px !important;
    max-width: 45px !important;
    margin: 2px;
    padding: 5px !important;
    font-size: 18px !important;
    text-align: center;
    font-weight: 800 !important;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.form-check{
    //background: #f4f4f44d;
    display: block;
    padding: 5px;
    border-radius: 5px;
    transition: $transition;
}

.form-check label {
    position: relative;
    cursor: pointer;
}

.form-check label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #ffffff40;
    box-shadow: none;
    padding: 2px 0;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    height: 1.5rem;
    width: 1.5rem;
    margin: 0.25rem 0.5rem 0.25rem 0.25rem;
    border-radius: 0.25rem;
    transition: $transition;
    flex-shrink: 0;
}
.form-check input:checked + label:before{
    background: $main-color;
}

.form-check input + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 13px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: scale(0.75) rotate(45deg);
    transition: $transition;

}
.form-check input:checked + label:after {
    opacity: 1;
    transform: scale(1) rotate(45deg);
}

.select2 *, .select2-results * {
    text-shadow: none!important;
}

.select2-results__option:not(.select2-results__option--highlighted),
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #495057 !important;
}

.form-group{

    .select2-container--default .select2-selection--single{
        height: calc(1.3em + 0.75rem + 2px) !important;
        padding: 0.15rem 0.5rem !important;
        border: 1px solid #ced4da !important;
    }
    .select2-container--default .select2-search--dropdown .select2-search__field{

        border: 1px solid #ced4da !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 100%;
    }
    .select2-container{
        width: 100% !important;
    }
    .input-group{
       .select2-container--default .select2-selection--single{
           border:0 !important;
       }
    }
}

// main ui stuff
#main_ui{
    width: 100%;
    height: calc(100vh - 50px - 30px);
    position: relative;
    margin: 0 auto 10px;
}

.top_layer_ui{
    z-index: 10;
    opacity: 1;
    &.inactive{
        z-index: 0;
        opacity: 0.5;
    }
}
.top_right_section{
    position: absolute;
    top: .5rem;
    right: 0;
    width: 25%;
    display: flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    flex-direction: column;
    text-align: right;
    .check_in_ui, .top_right_ui {
        width: 10vw;
        height: 10vw;
        max-width: 50px;
        max-height: 50px;
        transition: $transition;
        position: relative;
        transform: translateY(-1rem);

        .fas{
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
        }
        &:hover{
            opacity: .5;
        }
    }
    .check_in_ui {
        .fas{
            font-size: 2.4rem;
        }

        #check-status{
            position: absolute;
            left: 50%;
            top: 66%;
            transform: translate(-50%,-50%);
            width: 15px;
            height: 15px;
            @include background-default;
            background-image: url('/assets/images/generic/icons/times-circle-solid.svg') ;
            &.check-success{
                background-image: url('/assets/images/generic/icons/check-circle-solid.svg') ;
            }
            &.check-fail{
                background-image: url('/assets/images/generic/icons/times-circle-solid.svg') ;
            }
        }
    }

    .top_right_ui {
        .fas{
            font-size: 1.8rem;
        }
    }

    #check_in_btn {
        //background-image: url('/assets/images/cl/token_icons/Calendar_no tick.png') ;
    }

    #progress_bar {
        //background-image: url('/assets/images/cl/bars/Progress_Bar_BG.png') ;
    }
    .progress_ui{
        width: 10vw;
        height: 60vw;
        max-width: 50px;
        max-height: 200px;
        position: relative;
        &:after{
            content:'';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%,0);
            width: 100%;
            height: 100%;
            @include background-default;
            background-image: url('/assets/images/cl/bars/Progress_Bar.png') ;
        }
        .progress_box_wrap{
            position: absolute;
            left: 50%;
            bottom: 13%;
            transform: translate(-50%, 0);
            width: 15px;
            height: 85%;
            border-radius: 1.5em;
            overflow: hidden;
            display: flex;
            flex-direction: column-reverse;
            justify-content: end;
            align-items: center;
            background: #5d3725;
            background: linear-gradient(180deg,
                #5d3725 0%,
                #5d3725 calc( calc(100% / 8 * 1) - 1% ), #9e4d34 calc( 100% / 8 * 1), #5d3725 calc( calc(100% / 8 * 1) - 1% ),
                #5d3725 calc( calc(100% / 8 * 2) - 1% ), #9e4d34 calc( 100% / 8 * 2), #5d3725 calc( calc(100% / 8 * 2) + 1% ),
                #5d3725 calc( calc(100% / 8 * 3) - 1% ), #9e4d34 calc( 100% / 8 * 3), #5d3725 calc( calc(100% / 8 * 3) + 1% ),
                #5d3725 calc( calc(100% / 8 * 4) - 1% ), #9e4d34 calc( 100% / 8 * 4), #5d3725 calc( calc(100% / 8 * 4) + 1% ),
                #5d3725 calc( calc(100% / 8 * 5) - 1% ), #9e4d34 calc( 100% / 8 * 5), #5d3725 calc( calc(100% / 8 * 5) + 1% ),
                #5d3725 calc( calc(100% / 8 * 6) - 1% ), #9e4d34 calc( 100% / 8 * 6), #5d3725 calc( calc(100% / 8 * 6) + 1% ),
                #5d3725 calc( calc(100% / 8 * 7) - 1% ), #9e4d34 calc( 100% / 8 * 7), #5d3725 calc( calc(100% / 8 * 7) + 1% ),
                #5d3725 100%);


            .progress_box{
                border-bottom: 2px solid #5d3725;
                width: 100%;
                height: calc( calc(100%/7) - 3px);
                &:nth-child(1){ background: #f51519; }
                &:nth-child(2){ background: #f5271a; }
                &:nth-child(3){ background: #f53b1b; }
                &:nth-child(4){ background: #f54d1d; }
                &:nth-child(5){ background: #f66120; }
                &:nth-child(6){ background: #f77524; }
                &:nth-child(7){ background: #f9ad2e; }
                &:nth-child(8){ background: #cdb52c; }
            }
        }

    }
}
.top_left_section{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
}
.middle_section{
    position: absolute;
    transform: translate(-50%, 0%);
    display: block;
    justify-content: center;
    bottom: 17%;
    left: 50%;
    width: 80vw;
    min-width: 250px;
    max-width: 400px;
    height: 80vw;
    min-height: 250px;
    max-height: 400px;
}
.bottom_section{
    text-align: center;

    .bottom_ui_wrapper{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .bottom_ui{
        @include background-default;
        margin: 5px;
        cursor: pointer;
        position: relative;

        width: 15vw;
        height: 15vw;
        max-width: 2.5rem;
        max-height: 2.5rem;
        transition: $transition;
        transform: translateY(-1rem);

        font-size: 1.6rem;
        display: flex;
        justify-content: center;
        align-items: center;

        &:hover{
            opacity: .5;
        }
        &#core_ar_btn:before {
            content: "AR";
        }
        &#daily_challenge_btn:before {
            content: "Challenges";
        }
        &#reward_redemption_btn:before {
            content: "Rewards";
        }
        &#notification_btn:before {
            content: "Notice";
        }
        &#share_btn:before {
            content: "Share";
        }
        //&:last-child:before {
        //    position: relative;
        //    top: -12;
        //    left: 2%;
        //}
    }
    #core_ar_btn {
        //background-image: url('/assets/images/cl/token_icons/Gold Token_AR Game.png') ;
    }
    #daily_challenge_btn {
        //background-image: url('/assets/images/cl/token_icons/Gold Token_Challenge.png') ;
    }
    #reward_redemption_btn {
        //background-image: url('/assets/images/cl/token_icons/Gold Token_Rewards.png') ;
    }
    #notification_btn {
        //background-image: url('/assets/images/cl/token_icons/Gold Token_Notifications.png') ;
    }
    #share_btn {
        //background-image: url('/assets/images/cl/token_icons/Gold Token_Refer a Friend.png') ;
    }
}

// .bottom_section .bottom_ui #notification_btn,
// .navbar #notification_btn
#notification_btn {
    &.unread{
        position: relative;
        &:after{
            content:'';
            position: absolute;
            top:0;
            right: 0;

            border-radius: 50%;
            background: $color-danger;
            border: 2px solid #fbc107;
        }
    }
}

.bottom_section .bottom_ui #notification_btn {
    &.unread{
        &:after{
            width: 15px;
            height: 15px;
        }
    }
}

.navbar #notification_btn {
    &.unread{
        &:after{
            width: 10px;
            height: 10px;
        }
    }
}

.bottom_section .bottom_ui #notification_btn {
    &.unread{
        &:after{
            width: 15px;
            height: 15px;
        }
    }
}

.check_in_ui, .bottom_ui, .plant_ui, .nutrition_ui, .progress_ui,
.top_right_ui {
    @include background-default;
    margin: 5px;
    cursor: pointer;
    position: relative;
}
div.nutrition_ui, div.bottom_ui, div.check_in_ui, div.top_right_ui {
    &:before {
        font-size: 10px;
        font-weight: bold;
        position: absolute;
        //overflow: hidden;
    }
}

@media only screen and (max-width: 287px) {
    div.nutrition_ui, div.bottom_ui, div.check_in_ui, div.top_right_ui {
        &:before {
            font-size: 8px;
            top: -3;
        }
    }
}
@media only screen and (min-width: 450px) {
    div.nutrition_ui, div.bottom_ui, div.check_in_ui, div.top_right_ui {
        &:before {
            font-size: 12px;
        }
    }
    div.nutrition_ui:before {
        top: 0;
    }
}

div.bottom_ui, div.check_in_ui, div.top_right_ui {
    &:before {
        @include font-style;
        text-align: center;
        right: 50%;
        bottom:0;
        transform: translate(50%, 100%);
    }
}
div.check_in_ui#check_in_btn:before {
    content: "Daily";
}
div.top_right_ui {
    &#profile_btn:before {
        content: "Profile";
    }
}

.ui_msg{
    width:100%;
}

// challenge list
#challenge_list{
    .challenge-item{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border :0 ;
        overflow: hidden;;

        //&:before{
        //    content: "";
        //    position: absolute;
        //    width: 100%;
        //    height: 100%;
        //    top: 0;
        //    left: 0;
        //    background: rgba(0,0,0,0.25);
        //    z-index: 0;
        //
        //}
        &-bg{
            position: relative;
            background-repeat: no-repeat;
            background-image: none;
            width: 100%;
            height: calc(49vw - 33px);
            max-height: 225px;
            background-color: rgb(255 255 255 / 25%);
            border-radius: 1rem;
            background-size: cover;
            background-position: 50% 50%;
            overflow: hidden;
        }
        &-tries{
            position: absolute;
            right: 0;
            bottom: 0;
            /* width: 78px; */
            padding: 0 5px;
            height: 20px;
            display: flex;
            background: rgb(0 0 0 / 50%);
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
            line-height: 1.2;
            justify-content: center;
            align-items: center;
            text-align: right;
            border-radius: 0.15rem;
        }

        &-title{
            font-weight: bold;
            z-index: 1;
            display: block;
            color: white;
            position: relative;
            font-size: .8rem;
            line-height: 1.2;
        }
    }
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    border-bottom: 2px solid white !important;
    border-radius: 0 !important;
    background: transparent !important;
}
.nav-fill .nav-item, .nav-fill>.nav-link{
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;

}

// notifications
#popup_notifications .msg-container::-webkit-scrollbar,
#popup_rewards .reward-body-container::-webkit-scrollbar {
    display: none;
}

#popup_notifications {
    .msg-container {
        min-height: 300px;
        max-height: 60vh;
        overflow-y: scroll;
    }

    .msg-box{
        text-align: left;
        //color: black;
        margin-bottom: 10px;

        .date{
            border-radius: 5px;
            color: black;
            background-color: $yellow-orange;
            text-align: center;
            width: 100px;
            padding: 5px;
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .status_item {
            margin-bottom: .5rem;
            text-align: justify;
            font-size: .8rem;
        }

        hr {
            border: 1px dashed rgba(0,0,0,0.25);
        }
    }

    .content.have-unread-icon {
        width: 90%;
        display: inline-block;
    }

    .unread-icon {
        width: 10%;
        vertical-align: middle;
        display: inline-block;
        padding-left: 10px;
    }
}

.box-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

// check in
@mixin calenderdays{
    position: absolute;
    top:3px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 8px;
}

#popup-daily-checkin-body{
    margin-left: 1%;
    display: grid;
    grid-column-start: 1;
    grid-column-end: 7;
    grid-template-columns: 14% 14% 14% 14% 14% 14% 14%;
    margin: 1em auto;

    .calendar_block {
        display: block;
        padding: 15px 0 5px;
        border-radius: 9px;
        color: white;
        justify-content: center;
        align-items: center;
        margin: 3px;
        font-weight: bold;
        float: left;
        font-size: 1em;
        position: relative;

        &.blank{
            background: transparent;
            opacity: 0;
        }
        &.unchecked{
            background: rgba(0,0,0,0.25);
        }
        &.checked{
            background: #7bdd57;
        }
        &:before{
            content:"MON";
            @include calenderdays;
        }
        &:nth-child(7n+1) {
            &:before{
                content:"MON";
                @include calenderdays;
            }
        }
        &:nth-child(7n+2) {
            &:before {
                content: "TUE";
                @include calenderdays;
            }
        }
        &:nth-child(7n+3) {
            &:before {
                content: "WED";
                @include calenderdays;
            }
        }
        &:nth-child(7n+4) {
            &:before {
                content: "THU";
                @include calenderdays;
            }
        }
        &:nth-child(7n+5) {
            &:before {
                content: "FRI";
                @include calenderdays;
            }
        }
        &:nth-child(7n+6) {
            &:before {
                content: "SAT";
                @include calenderdays;
            }
        }
        &:nth-child(7n+7) {
            &:before {
                content: "SUN";
                @include calenderdays;
            }
        }
    }
}

// rewards
#popup_attempt_plant_reward_redemption_confirmation {
    .voucher-tnc-box {
        overflow: hidden;
        display: block;
        width: 100%;
        word-wrap: break-word;
    }
}

//#popup_rewards,
//#popup_attempt_plant_reward_redemption_confirmation {
//    .reward-body-container {
//        max-height: 60vh;
//        overflow-y: scroll;
//        overflow-x: hidden;
//    }
//}

// main game
.main-game-wrapper {
    padding: 10px;
    padding-top: 0px;

    .main-game-component {
        text-align: center;

        .game-container {
            &.scratchcard {
                .scratch-result,
                .scratch-canvas {
                    border: 5px solid #3AB549;
                    border-radius: 10px;
                }
            }
        }
    }

    .err-msg {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.force-hide {
    display: none !important;
}

.reward-multiple {
    .reward-item{
        width: 150px;
        font-size: 0.9rem;
        &:not(:last-child){
            margin-right: 2rem;
            position: relative;
            &:after{
                content: '&';
                position:absolute;
                right: 0;
                top: 2rem;
                width: 2rem;
                font-weight: bold;
                transform: translate(100%, -50%);
                font-size: 1rem;
            }
        }
        &.last-child:after {
            content: '';
        }
    }
}
