
/*  **********************************      
    Start :root

    ViewData["main-color"] = Model.defaultsetting.SiteColor;
    ViewData["main-secondary-color"] = Model.defaultsetting.SiteColor;
    ViewData["btn-hover"] = Model.defaultsetting.SiteColor;
    ViewData["btn-color"] = Model.defaultsetting.SiteColor;
    ViewData["link-hover"] = Model.defaultsetting.SiteColor;

***********************************/
:root {
    --background-color: [30, 144, 255];
   /*// #efefef;*/
    --background-text-color: #775;
    --main-color: #2159dc;
    --main-secondary-color: #8f8f8f;
    --main-secondary-text-color: #ffffff;
    --btn-secondary-color: #8f8f8f;
    --btn-secondary-text: #ffffff;
    --dodgerblue: [30, 144, 255];
    --btn-hover: #0000009d;
    --btn-color: #00000050;
    --btn-text: #ffffff;
    --link-text: #111122;
    --link-hover: #8f8f8f;
    --alert-text-color: #ffffff;
    --alert-border-color: #000000;
    --alert-background-color: #c0c0c0;
    --dark-hover: #8f8f8f;
    --blue: #5e50f4;
    --indigo: #6610f2;
    --purple: #6a008a;
    --pink: #e91e63;
    --red: #f96868;
    --orange: #f2a654;
    --yellow: #f6e84e;
    --green: #46c35f;
    --teal: #58d8a3;
    --cyan: #57c7d4;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-background1: #cfcfcf;
    --gray-dark: #0f1531;
    --gray-light: #aab2bd;
    --gray-lighter: #e8eff4;
    --gray-lightest: #e6e9ed;
    --black: #000000;
    --primary: #2159dc;
    --secondary: #3a3a3a;
    --success: #3e8177;
    --info: #4d7cff;
    --warning: #f5a623;
    --danger: #fc5661;
    --light: #d0d0d0;
    --dark: #666;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif-old: "Segoe UI", Tahoma, Geneva, Verdana, Object Sans,sans-serif;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/*.notched-box {
    position: relative;
    padding: 20px;
    border: 2px solid #000;
}
 
    .notched-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        background: #fff;*/ /* Same background color as the parent */
        /*border-top: 2px solid #000;
        border-left: 2px solid #000;
    }*/

/* CUSTOMIZE THE FRONT PANEL
-------------------------------------------------- */

.panel-container {
    display: flex;
    width: 90vw;
}

.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    flex: 0.5;
    margin: 10px;
    position: relative;
    -webkit-transition: all 700ms ease-in;
}

    .panel h3 {
        font-size: 24px;
        position: absolute;
        bottom: 20px;
        left: 20px;
        margin: 0;
        opacity: 0;
    }

    .panel.active {
        flex: 5;
    }

        .panel.active h3 {
            opacity: 1;
            transition: opacity 0.3s ease-in 0.4s;
        }

@media (max-width: 480px) {
    .panel-container {
        width: 100vw;
    }

    .panel:nth-of-type(4),
    .panel:nth-of-type(5) {
        display: none;
    }
}
    /* CUSTOMIZE THE 
-------------------------------------------------- */
    .bento-card {
        border-radius: 1rem;
        height: 100%;
        transition: transform 0.2s;
    }

        .bento-card:hover {
            transform: scale(1.02);
        }

    .h-200 {
        height: 200px;
    }

    .h-400 {
        height: 400px;
    }

    /* CHAMFERED EDGES
-------------------------------------------------- */
    .card {
        position: relative;
        /*  width: 1200px;
    height: 360px;  */
        overflow: hidden;
        background-color: #f1f1f7;
        clip-path: polygon( 0 10%, 10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90% )
    }

    .chamfered-box {
        position: relative;
        /*  width: 1200px;
    height: 360px;  */
        overflow: hidden;
        background-color: #f1f1f7;
        clip-path: polygon( 0 20%, 10% 0, 90% 0, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80% )
    }

    .engns-box {
        position: relative;
        width: 300px;
        height: 300px;  
        overflow: hidden; 
        clip-path: polygon( 0 50%, 25% 0, 75% 0, 100% 50%, 100% 50%, 75% 100%, 25% 100%, 0% 50% )
    }
    /* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
    /* Carousel base class */
    .carousel {
        margin-bottom: 4rem;
    }
    /* Since positioning the image, we need to help out the caption */
    .carousel-caption {
        bottom: 3rem;
        z-index: 10;
    }

    /* Declare heights because of positioning of img element */
    .carousel-item {
        height: 32rem;
    }

        .carousel-item > img {
            position: absolute;
            top: 0;
            left: 0;
            min-width: 100%;
            height: 32rem;
        }


    /* MARKETING CONTENT
-------------------------------------------------- */

    /* Center align the text within the three columns below the carousel */
    .marketing .col-lg-4 {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .marketing h2 {
        font-weight: 400;
    }
    /* rtl:begin:ignore */
    .marketing .col-lg-4 p {
        margin-right: .75rem;
        margin-left: .75rem;
    }
    /* rtl:end:ignore */


    /* PAGE Featurettes 
-------------------------------------------------- */

    .featurette-divider {
        margin: 5rem 0; /* Space out the Bootstrap <hr> more */
    }

    /* Thin out the marketing headings */
    .featurette-heading {
        font-weight: 300;
        line-height: 1;
        /* rtl:remove */
        letter-spacing: -.05rem;
    }


    /* RESPONSIVE CSS
-------------------------------------------------- */

    @media (min-width: 40em) {
        /* Bump up size of carousel content */
        .carousel-caption p {
            margin-bottom: 1.25rem;
            font-size: 1.25rem;
            line-height: 1.4;
        }

        .featurette-heading {
            font-size: 50px;
        }
    }

    @media (min-width: 62em) {
        .featurette-heading {
            margin-top: 7rem;
        }
    } 


    .affiliate_logo {
        max-width: 40px;
    }

    .bg-gray {
        background-color: gray;
    }
    /*  For Pricing    */
    .savings-ribbon {
        top: -20px;
        left: -18px;
        position: absolute;
        left: -3px;
        background: var(--gray-dark);
        border: 1px solid var(--gray-dark);
        padding: 0 10px;
        min-width: 70px;
        font-size: 14px;
        font-family: var(--font-family-sans-serif);
        font-weight: 400;
        color: #fff !important;
        margin: 0;
        top: 65px
    }

    .pricebox {
        font-weight: 900;
        font-style: italic;
        padding: 10px 0 20px;
        -webkit-transform: skewX(0) skewY(-5deg);
        -ms-transform: skewX(0) skewY(-5deg);
        -o-transform: skewX(0) skewY(-5deg);
        transform: skewX(0) skewY(-5deg);
        font-size: 28px;
        line-height: 1;
    }


    .area_toolbar {
        height: 40px;
    }


    .bg-light {
        color: var(--gray-dark);
        --background-color: var(--gray-light);
        font-family: var(--font-family-sans-serif);
    }

    .keycodefont {
        color: var(--primary);
        font-family: var(--font-family-monospace);
    }

    .bg-keys {
        color: var(--gray);
        --background-color: var(--gray-dark);
        font-family: var(--font-family-monospace);
    }



    .text-primary {
        color: var(--danger);
    }

    .admin-menu {
        color: var(--main-color);
    }

    html {
        /*    font-size: 14px;
*/ position: relative;
        min-height: 100%;
    }

    /*@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
*/ /*
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

*/

    .campaignlist td {
        color: white;
    }


    a.navbar-brand {
        white-space: normal;
        text-align: center;
        word-break: break-all;
    }

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #555;
        border-color: #8f8f8f;
    }

    .border-top {
        border-top: 1px solid #e5e5e5;
    }

    .border-bottom {
        border-bottom: 1px solid #e5e5e5;
    }

    .box-shadow {
        box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
    }

    button.accept-policy {
        font-size: 1rem;
        line-height: inherit;
    }

    #success-alert {
        color: var(--alert-text-color) !important;
        border-color: var(--alert-border-color) !important;
        background-color: var(--alert-background-color) !important;
    }

    /*    Page Defaults      */

    body {
        margin-bottom: 60px;
        /*    padding-bottom: 100px;
*/
        margin-right: 0px;
        margin-left: 0px;
        /* //  */
        font-family: var(--font-family-sans-serif);
        min-height: 100vh;
        position: relative;
        /* margin: 0;*/
        box-sizing: border-box;
        /*    background-color: #ffffff !important;
*/
        background-image: linear-gradient(180deg, var(--background-color), #fff 250px, #fff);
        /*   background-color: var(--background-color) !important;
       background-image: url('../../img/Logo_Backdrop.png');
*/
        background-repeat: no-repeat;
        background-size: cover;
        /*color: white;*/
        font-size: 1.125rem;
        line-height: 1.75rem;
        color: var(--background-text-color) !important;
        font-weight: 400;
    }


    @media (min-width: 576px) {
        html {
            font-size: 12px;
        }
    }

    @media (min-width: 768px) {
        html {
            font-size: 14px;
        }
    }

    @media (min-width: 1200px) {
        html {
            font-size: 16px;
        }
    }

    #scrolltotop {
        background-color: var(--link-hover);
        bottom: 20px;
        color: #ffffff;
        display: none;
        height: 40px;
        line-height: 27px;
        position: fixed;
        right: 20px;
        width: 40px;
        text-align: center;
        font-size: 16px;
        border-radius: 3px;
        cursor: pointer;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    #scrolltotop {
        display: none;
    }

        #scrolltotop:hover,
        #scrolltotop:focus,
        #scrolltotop:active {
            color: #ffffff;
            border-radius: 100%;
        }


    .form-select {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
        color: var(--link-hover);
    }

    .form-floating > .form-control, .form-floating > .form-select {
        height: calc(3.5rem + 20px);
        line-height: 1.35;
        color: var(--link-hover);
    }

    .navbar-toggler {
        /*  background-color: #00000013;*/
    }

        .navbar-toggler:focus {
            text-decoration: none;
            outline: 0;
            box-shadow: none;
        }

    .navbar-toggler-icon {
        color: var(--main-color);
    }

        .navbar-toggler-icon:active:focus {
            box-shadow: none;
            outline: 0;
        }

        .navbar-toggler-icon:active {
            box-shadow: none;
            outline: 0;
        }

    navbar-light {
        color: var(--link-text);
    }

        navbar-light:hover {
            color: var(--link-hover);
        }

    .nav-pills
    .nav-link.active {
        color: #ffffff;
        background-color: var(--link-hover);
    }

    .nav-link {
        color: var(--link-text);
        font-weight: 600;
    }

    a.nav-link.active {
        color: var(--link-hover);
        font-weight: 800;
    }

    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link:hover {
        color: var(--link-hover);
    }

    .nav-link:active {
        color: var(--link-hover);
    }

    a {
        color: var(--link-text);
        text-decoration: none;
        font-weight: 600;
    }

        a:focus, a:active, a:active:focus, a:hover {
            color: var(--link-hover);
        }


    /*
.selected {
    color: var(--link-text);
}
    .selected:hover {
        color: var(--link-hover);
    }

*/
    form-check form-check-inline {
        color: var(--link-hover)
    }

    .link-dark {
        color: white;
    }

        .link-dark:hover {
            color: red;
        }

    /* check boxes */
    .form-check-input[type="checkbox"] {
        width: 2em;
        height: 2em;
        margin-top: -0.2em;
        padding-right: 0.2em;
    }

    .form-check-input[type="checkbox"] {
        width: 1.5em;
        height: 1.5em;
    }

    .form-check-input:checked[type="checkbox"] {
        background-color: var(--link-hover);
        border-color: var(--link-hover);
    }

    /* radio buttons */
    .form-check-input[type="radio"] {
        margin-top: .25em;
        padding-right: .25em;
        width: none;
        height: none;
    }

    .form-check-input:checked[type="radio"] {
        background-color: var(--link-hover);
        border-color: var(--link-hover);
    }

    .form-check-input:checked[type="radio"] {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    }

    input[type="range"] {
        accent-color: var(--link-hover);
    }

    /* slider range */
    input[type="range"] {
        -webkit-appearance: none;
        width: 100%;
        height: 15px;
        background: var(--btn-color);
        border-radius: 5px;
        background-image: linear-gradient(var(--btn-color), #555);
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
        /* slider button */

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            cursor: ew-resize;
            box-shadow: 0 0 2px 0 #555;
            transition: background .3s ease-in-out;
            background-color: var(--btn-color);
        }

        input[type="range"]::-moz-range-thumb {
            -webkit-appearance: none;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            cursor: ew-resize;
            box-shadow: 0 0 2px 0 #555;
            transition: background .3s ease-in-out;
            background-color: var(--btn-color);
        }

    input[type=range]::-webkit-slider-runnable-track {
        -webkit-appearance: none;
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .form-group {
        padding: 3px !important;
    }

    .form-group {
        padding: 3px !important;
    }


    /* table */
    .table {
        color: var(--main-text-color) !important;
    }

    .table-cell td {
        color: var(--main-text-color) !important;
    }

    .table-striped td {
        color: var(--main-text-color) !important;
    }
    /* buttons */

    .btn {
        color: var(--btn-text);
        border-color: var(--btn-color);
        text-decoration: none;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 0px solid;
        line-height: 1.5;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

        .btn:focus, .btn:active, .btn:active:focus {
            color: var(--btn-text);
            border-color: var(--btn-text);
            background-color: var(--btn-hover);
            outline: 0;
            box-shadow: none;
            /*   box-shadow: 0 0 0 .25rem var(--btn-hover);   */
        }

            .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
                box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--main-color);
            }


    .btn-link:focus {
        box-shadow: none;
    }

    .btn-link:active:focus {
        box-shadow: none;
    }

    /*.btn:hover {
    background-color: transparent;
}*/

    .bt:active {
        /*   background-color: #00000050;*/
    }

    .btn-link {
        color: var(--link-text);
    }

        .btn-link:hover {
            color: var(--link-hover);
        }

    .btn-info {
        color: var(--btn-text);
        /*    background-color: var(--btn-color);*/
    }

    .btn-success {
        color: var(--btn-text);
        /*    background-color: var(--btn-color);*/
    }


.btn-warning {
    color: var(--btn-text);
    /*    background-color: var(--btn-color);*/
}
.btn-green {
    border-color: var(--btn-color);
    background-color: #1e7e19;
    /*    background-color: var(--btn-color);*/
}

    .btn-green:hover {
        background-color: var(--btn-secondary-color);
    }

.btn-blue {
    border-color: var(--btn-color);
    background-color: #0024ff;
    /*    background-color: var(--btn-color);*/
}

    .btn-blue:hover {
        background-color: var(--btn-secondary-color); 
    }

.btn-red {
    border-color: var(--btn-color);
    background-color: #ff0000;
    /*    background-color: var(--btn-color);*/
}

    .btn-red:hover {
        background-color: var(--btn-secondary-color);
    }

.btn-danger {
        /*  min-width: 160px;
    max-width: 260px;*/
        color: var(--btn-text);
        font-weight: 600;
        padding: 0.375rem 0.75rem;
        font-size: 1.33rem;
        outline: none;
        border-radius: 0.25rem;
        margin-bottom: 10px;
    }


    .btn-primary {
        /*  min-width: 160px;
    max-width: 260px;*/
        color: var(--btn-text);
        background-color: var(--btn-color);
        font-weight: 600;
        padding: 0.375rem 0.75rem;
        font-size: 1.33rem;
        /* color: white;*/
        outline: none;
        border-radius: 0.25rem;
        margin-bottom: 10px;
    }

        .btn-primary:hover {
            background-color: var(--btn-hover);
            border-color: var(--btn-text);
            color: var(--btn-text);
            /* Wrapping element */
            /* Set some basic padding to keep content from hitting the edges */
        }

    .btn-secondary {
        color: var(--btn-secondary-text);
        background-color: var(--btn-secondary-color);
    }

        .btn-secondary:hover {
            color: var(--btn-secondary-color);
            background-color: var(--btn-secondary-text);
        }

    .container-fluid {
        width: 100%;
    }
    /* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
    .dl-horizontal dt {
        white-space: normal;
    }

    /* Set widths on the form inputs since otherwise they're 100% wide
input[type="text"], */
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    input[type="selects"] {
        /*    max-width: 280px;
*/
    }

    /* Responsive: Portrait tablets and up */
    @media screen and (min-width: 768px) {
        .jumbotron {
            margin-top: 20px;
        }

        .body-content {
            padding: 0;
        }

        .container {
            width: 100%;
        }
    }

    /* Search Grids */
    .normalFrame {
        border: 3px solid #80808050;
        width: 100%;
        height: 65vh;
        top: 0;
        left: 0;
    }

    .minimizedScreen {
        width: 100%;
        height: 65px;
        position: page absolute;
        margin-left: 0px;
        margin-right: 0px;
    }

        .minimizedScreen iframe {
            width: 100%;
            height: 20px;
        }

    .fullScreen {
        width: 100%;
        height: 100vh;
        position: page absolute;
        margin-left: 0px;
        margin-right: 0px;
    }

        .fullScreen iframe {
            width: 100%;
            height: 95vh;
        }

    /*autocomplete*/
    .autocomplete_completionListElement li ul {
        visibility: visible;
        position: absolute;
        width: 273px;
        left: 0px;
        top: 50px;
        opacity: 1;
    }

    .autocomplete_completionListElement {
        overflow: hidden;
        max-height: 200px;
        min-height: 0px;
        border-width: 0px;
        border-style: solid;
        list-style-type: none;
        margin: 0px;
        padding: 22px;
        width: auto;
        background-color: white;
        text-align: left;
    }

    .autocomplete_listItem {
    }

    .autocomplete_highlightedListItem {
        color: blueviolet;
    }

    /* Home Page Search Bar */
    .input-home-search {
        border: 1px solid black;
        border-radius: 0.0rem;
        border-top-right-radius: 0.0rem;
        border-bottom-right-radius: 0.0rem;
    }

        .input-home-search input {
            font-size: 35px;
            height: 65px;
            max-width: 100%;
        }

    /* Master Page Search Bar */
    .input-nav-search input {
        border: 1px solid black;
        border-radius: 0.0rem;
        border-top-right-radius: 0.0rem;
        border-bottom-right-radius: 0.0rem;
    }

    .input-nav-search lable {
        height: 55px;
        width: 55px;
    }

    .input-nav-search input {
        font-size: 30px;
        height: 55px;
        width: 100%;
        max-width: 100%;
        -ms-flex: 0 0 100%;
    }


    /*<styles for login and accounts  >*/
    .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

    @media (min-width: 768px) {
        .bd-placeholder-img-lg {
            font-size: 3.5rem;
        }
    }

    .form-signin {
        width: 100%;
        max-width: 330px;
        padding: 15px;
        margin: auto;
    }

        .form-signin .checkbox {
            font-weight: 400;
        }

        .form-signin .form-floating:focus-within {
            z-index: 2;
        }

        .form-signin input[type="email"] {
            margin-bottom: -1px;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .form-signin input[type="password"] {
            margin-bottom: 10px;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }


    /* HOME PAGE CAROUSEL */

    /* Carousel base class */
    .carousel {
        margin-bottom: 4rem;
    }
    /* Since positioning the image, we need to help out the caption */
    .carousel-caption {
        bottom: 3rem;
        z-index: 10;
    }

    /* Declare heights because of positioning of img element */
    .carousel-item {
        height: 26rem;
        border: 3px;
        text-align: center !important;
        vertical-align: middle;
        width: 100%;
        flex-shrink: 0;
    }

        .carousel-item h1 {
            color: rebeccapurple;
        }

        .carousel-item > img {
            position: absolute;
            top: 0;
            left: 0;
            min-width: 100%;
            height: 26rem;
        }

    .carousel-indicators [data-bs-target] {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        /* 
        background-color: var(--gray-dark);
    */
    }

    /* carousel Control P{ause Button*/

    .carousel-control-pause {
        align-content: center;
    }

    .carousel-control-pause-icon {
        /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");*/
    }

    @media (prefers-reduced-motion: reduce) {

        .carousel-control-pause {
            transition: none;
        }
    }

    .carousel-control-pause:hover {
        color: var(--main-color);
        text-decoration: none;
        outline: 0;
        opacity: 0.9;
    }


    /*
    .carousel-control-pause {
        display: inline-block;

        width: 2rem;
        height: 2rem;
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: 100% 100%;
    }
*/
    .carousel-control-pause {
        color: var(--light);
        position: absolute;
        top: 20rem;
        align-items: center;
        z-index: 1;
        display: flex;
        justify-content: center;
        width: 15%;
        padding: 0;
        text-align: center;
        background: none;
        border: 0;
        opacity: 0.5;
        transition: opacity 0.15s ease;
    }
