:root {
	--color-white-100: #fff;
	--color-white-200: #e6e6e6;
	--color-white-300: #ccc;
	--color-white-400: #a6a6a6;
	--color-white-500: #808080;
	--color-black-100: #202b3c;
	--color-black-200: #1c2431;
	--color-black-300: #161d27;
	--color-black-400: #0b1423;
	--color-blue-100: #bed8fe;
	--color-blue-200: #91befd;
	--color-blue-300: #61a1fa;
	--color-blue-400: #3c8af6;
	--color-blue-500: #2477eb;
	--color-blue-600: #1d6bd7;
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
  }
  
  html,
  body {
    height: 100%;
  }

  /* Opera Fix thanks to Maleika (Kohoutec) */

body:before {
    content: "";
    height: 100%;
    float: left;
    width: 0;
    margin-top: -32767px;
    /* thank you Erik J - negate effect of float*/
  }
  
  .app{
    min-height: 100%;
  }
  .app-wrapper, main{
    overflow: hidden;
    min-height: 100%;
    padding-bottom: 40px;
    /* must be same height as the footer */
  }

  footer {
    position: relative;
    margin-top: -40px;
    /* negative value of footer height */
    height: 40px;
    clear: both;
  }
/* color palette */
.font-offwhite {
    color: rgba(248, 248, 248, 1);
}

.font-offwhite a,
.font-offwhite .navbar-link,
.font-offwhite ul>li>a,
.font-offwhite div>a {
    color: rgba(94, 133, 111, 1);
}

.font-lightest {
    color: rgba(168, 189, 178, 1);
}

.font-lightest a,
.font-lightest .navbar-link,
.font-lightest ul>li>a,
.font-lightest div>a {
    color: rgba(248, 248, 248, 1);
}

.font-lighter {
    color: rgba(124, 156, 139, 1);
}

.font-lighter a,
.font-lighter .navbar-link,
.font-lighter ul>li>a,
.font-lighter div>a {
    color: rgba(248, 248, 248, 1);
}

.font-light {
    color: rgba(94, 133, 111, 1);
}

.font-light a,
.font-light .navbar-link,
.font-light ul>li>a,
.font-light div>a {
    color: rgba(248, 248, 248, 1);
}

.font-primary {
    color: rgba(9, 69, 36, 1);
}

/* end color palette */
/* layout and general */
.clearfix :before,
.clearfix :after {
    content: " ";
    display: table;
}

.clearfix :after {
    clear: both;
}

/* -- Grid Setup -- */
.page-content {
    min-height         : 95vh;
    grid-area          : pagecontent;
    -ms-display        : grid;
    display            : grid;
    /* Default for pages */
    width              : 100%;
    margin             : 0 auto;
    grid-template-rows : auto auto 1fr;
    grid-template-areas: 'pagehead''main''pagefooter';
}

.page-content #mainSection {
    grid-area    : main;
    padding-left : 10vw;
    padding-right: 10vw;
}

.page-content .page-header {
    grid-area    : pagehead;
    padding-left : 10vw;
    padding-right: 10vw;
}

.page-content .page-footer {
    grid-area    : pagefooter;
    padding-left : 10vw;
    padding-right: 10vw;
}

.site-footer {
    width: 100%;
}

.site-footer .copy-info {
    font-weight: 700;
    text-align : center;
}

.site-footer .dev-info {
    grid-area : devinfo;
    text-align: right;
}

.page-header {
    margin-top: 80px;
}

.site-footer {
    border-top   : 1px solid #e4efe9 !important;
    margin-bottom: 0;
    padding      : 10px;
}

/* end layout and general */
/* From Boostrap */
/* End From Boostrap */
/* Page Specific */
#landingPage {
    grid-template-columns: 1fr;
    grid-template-areas  : 'hero''overview''whatwedo''bottomlogo''infofooter';
}


#landingPage .hero .hero-overlay {
    width              : 100%;
    height             : 100%;
    -ms-display        : grid;
    display            : grid;
    grid-template-rows : 1fr 1fr 1fr;
    grid-template-areas: '.''hcontent''haction';
}

#landingPage .hero .hero-overlay .hero-content {
    /* grid-area     : hcontent; */
    grid-area     : haction !important;
    align-self    : flex-end;
    padding-bottom: 20px;
    align-items   : center;
}

#landingPage .hero .hero-overlay .hero-content .hero-title {
    /* Text styles */
    font-size  : 3em;
    font-weight: bold;
    line-height: 1em;
    color      : white;
}

#landingPage .hero .hero-overlay .hero-content .hero-slogan {
    /* Text styles */
    font-size  : 1em;
    line-height: 1.5em;
    font-weight: 900;
    color      : white;
}


#landingPage .hero .hero-overlay .hero-content a {
    margin-top: 5px;
}

#landingPage .hero .hero-overlay .hero-content .text-outline {
    /* Text outlining */
    -webkit-text-fill-color     : rgba(248, 248, 248, 1);
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width   : 1px;
    -webkit-text-stroke-color   : black;
    color                       : rgba(248, 248, 248, 1);
    /* text-shadow              : -1px -1px 0 rgba(94, 133, 111, 1), 1px -1px 0 rgba(94, 133, 111, 1), -1px 1px 0 rgba(94, 133, 111, 1), 1px 1px 0 rgba(94, 133, 111, 1); */
}

#landingPage .hero .hero-overlay .hero-action-section {
    grid-area      : haction;
    align-self     : flex-end;
    padding-bottom : 20px;
    align-items    : center;
    justify-content: center;
    display        : flex;
}

#landingPage .hero .hero-overlay .hero-action-section input {
    display           : inline;
    width             : 60%;
    height            : 2em;
    padding           : 6px 12px;
    font-size         : 2em;
    line-height       : 1.42857;
    color             : rgba(9, 69, 36, 1);
    background-color  : #fff;
    background-image  : none;
    border            : 1px solid #ccc;
    border-color      : rgba(9, 69, 36, 1);
    border-radius     : 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow        : inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition     : border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition        : border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#landingPage .hero .hero-overlay .hero-action-section button {
    background-color: rgba(248, 248, 248, 1);
    border-color    : rgba(9, 69, 36, 1);
    color           : rgba(9, 69, 36, 1);
    font-weight     : 600;
    margin-left     : 10px;
    margin-right    : 10px;
    height          : 48px;
}

#landingPage .landing-section {
    padding-top   : 3em;
    padding-bottom: 3em;
}

#landingPage .section-title-group {
    text-align    : center;
    margin-bottom : 60px;
    font-weight   : 300;
    text-transform: uppercase;
}

#landingPage .section-title-group .section-heading {
    font-size     : 30px;
    text-align    : center;
    letter-spacing: 5px;
    margin-top    : 0px;
    margin-bottom : 16px;
}

#landingPage .section-title-group .section-subheading {
    font-size     : 18px;
    text-align    : center;
    letter-spacing: 3px;
}

#landingPage .section-alt {
    background-color: rgba(94, 133, 111, 1);
    color           : white;
}

.featured  {
    grid-area    : overview;
    justify-self : center;
    padding-left : 2em;
    padding-right: 2em;
    width        : 100%;
    max-width    : 1040px;
    -ms-display  : grid;
    display      : grid;
}

.featured  .lead-container {
    text-align: center;
}

.featured  .lead-container .lead-header {
    font-size: 3em;
}

.featured  .lead-container .lead {
    line-height: 2em;
}

.featured  .action-wrapper {
    -ms-display          : grid;
    display              : grid;
    grid-template-columns: repeat(3, minmax(26ch, 1fr));
    grid-auto-rows       : minmax(285px, auto);
    grid-gap             : 2em;
    min-height           : 200px;
}

.featured  .action-wrapper .action-box {
    position  : relative;
    text-align: center;
    padding   : 5px;
}

.featured  .action-wrapper .action-box img {
    width     : 50%;
    align-self: center;
}

.featured  .action-wrapper .action-box .action-box-content {
    position        : relative;
    -ms-display     : grid;
    display         : grid;
    border-radius   : 5px;
    background-color: #fff;
    padding         : 1em;
    min-height      : 100%;
    border          : 1px solid #e4efe9;
    border-radius   : 1rem;
    box-shadow      : 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    transition      : transform .2s;
}

.featured  .action-wrapper .action-box .action-box-content:hover {
    -ms-transform    : scale(1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1);
    /* Safari 3-8 */
    transform        : scale(1.1);
}

.featured  .action-wrapper .action-box .action-box-content .action-box-title {
    margin-top    : 0;
    margin-bottom : 0;
    font-size     : 20px;
    font-weight   : bold;
    text-transform: uppercase;
    text-align    : start;
    letter-spacing: 2px;
    line-height   : 25px;
    position      : relative;
    float         : left;
    top           : 50%;
    left          : 50%;
    transform     : translate(-50%, -50%);
}

.featured  .action-wrapper .action-box .action-box-content .action-box-button {
    padding           : 12px 5px;
    border-radius     : 4px;
    background-color  : rgba(9, 69, 36, 1);
    -webkit-transition: background-color 300ms ease;
    transition        : background-color 300ms ease;
    color             : #fff;
    font-size         : 16px;
    line-height       : 21px;
    font-weight       : 300;
    text-align        : center;
    letter-spacing    : 2px;
    text-decoration   : none;
    text-transform    : uppercase;
}

#landingPage .bottom-logo {
    grid-area     : bottomlogo;
    text-align    : center;
    padding-top   : 5px;
    padding-bottom: 10px;
    border-top    : 2px solid rgba(9, 69, 36, 1);
    border-bottom : 2px solid rgba(9, 69, 36, 1);
}

#landingPage .info-footer {
    grid-area       : infofooter;
    display         : flex;
    justify-content : space-around;
    background-color: rgba(0, 0, 0, .1);
    padding-top     : 40px;
}

#landingPage .info-footer .footer-wrapper {
    width              : 80vw;
    color              : rgba(94, 133, 111, 1);
    grid-gap           : 30px;
    -ms-display        : grid;
    display            : grid;
    grid-template-areas: 'about links social';
}

#landingPage .info-footer .footer-wrapper .footer-section .footer-heading {
    margin-top    : 0px;
    margin-bottom : 20px;
    color         : rgba(9, 69, 36, 1);
    font-size     : 18px;
    line-height   : 20px;
    font-weight   : 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

#landingPage .info-footer .footer-wrapper .footer-section p {
    margin-top   : 10px;
    margin-bottom: 10px;
    font-size    : 14px;
    line-height  : 25px;
    font-weight  : 300;
}

#landingPage .info-footer .footer-wrapper .footer-section .info-icon {
    float: left;
}

#landingPage .info-footer .footer-wrapper .footer-section .footer-link {
    color          : rgba(94, 133, 111, 1) !important;
    display        : block;
    margin-bottom  : 6px;
    padding-bottom : 10px;
    border-bottom  : 1px solid #d5d5e0;
    font-size      : 14px;
    font-weight    : 300;
    text-decoration: none;
}

#landingPage .info-footer .footer-wrapper .footer-section .footer-link img {
    border: 0;
    width : 20px;
}

#landingPage .info-footer .footer-wrapper .footer-section .with-icon {
    margin-left: 30px;
}

#landingPage .info-footer .footer-wrapper #footer-section-about {
    grid-area: about;
}

#landingPage .info-footer .footer-wrapper #footer-section-links {
    grid-area: links;
}

#landingPage .info-footer .footer-wrapper #footer-section-social {
    grid-area: social;
}

.input-group-text-rounded {
    background-color         : #fff;
    border-bottom-left-radius: 50rem !important;
    border-top-left-radius   : 50rem !important;
}

.input-serach {
    border-bottom-right-radius: 50rem !important;
    border-top-right-radius   : 50rem !important;
}

.mr-1 {
    margin-right: 5px;
}

/* End Page Specific */
/* tooltip */
.tooltip {
    padding         : 1rem 2rem;
    background-color: #212121;
    color           : white;
    position        : absolute;
    border-radius   : 10px;
    transition      : all 0.3s;
    z-index         : 999;
}

.tooltip-mx-top::after {
    content      : '';
    position     : absolute;
    left         : 50%;
    top          : 100%;
    transform    : translate(-50%, 0);
    border-bottom: 5px solid transparent;
    border-right : 5px solid transparent;
    border-top   : 5px solid #212121;
    border-left  : 5px solid transparent;
}

.tooltip-mx-left::after {
    content      : '';
    position     : absolute;
    right        : -10px;
    top          : 50%;
    transform    : translate(0, -50%);
    border-bottom: 5px solid transparent;
    border-right : 5px solid transparent;
    border-top   : 5px solid transparent;
    border-left  : 5px solid #212121;
}

.tooltip-mx-right::after {
    content      : '';
    position     : absolute;
    left         : -10px;
    top          : 50%;
    transform    : translate(0, -50%);
    border-bottom: 5px solid transparent;
    border-right : 5px solid #212121;
    border-top   : 5px solid transparent;
    border-left  : 5px solid transparent;
}

.tooltip-mx-bottom::after {
    content      : '';
    position     : absolute;
    left         : 50%;
    top          : -10px;
    transform    : translate(-50%, 0);
    border-bottom: 5px solid #212121;
    border-right : 5px solid transparent;
    border-top   : 5px solid transparent;
    border-left  : 5px solid transparent;
}

.doc {
    display   : block;
    text-align: center;
    font-size : 20px;
    color     : white;
    background: #263238;
    padding   : 10px;
}

/* box */
.ribbon-wrapper {
    width   : 100px;
    height  : 100px;
    overflow: hidden;
    position: absolute;
    top     : -3px;
    right   : -3px;
    z-index : 1;
}

.ribbon-tag {
    font-size         : 14px;
    text-align        : center;
    -webkit-transform : rotate(45deg);
    -moz-transform    : rotate(45deg);
    -ms-transform     : rotate(45deg);
    -o-transform      : rotate(45deg);
    position          : relative;
    padding           : 6px 0;
    left              : 0px;
    top               : 20px;
    width             : 130px;
    color             : #ffffff;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow   : 0px 0px 3px rgba(0, 0, 0, 0.3);
    box-shadow        : 0px 0px 3px rgba(0, 0, 0, 0.3);
    text-shadow       : rgba(255, 255, 255, 0.5) 0px 1px 0px;
    background        : #343434;
}

.ribbon-tag:before,
.ribbon-tag:after {
    content     : "";
    border-top  : 3px solid #50504f;
    border-left : 3px solid transparent;
    border-right: 3px solid transparent;
    position    : absolute;
    bottom      : -3px;
}

.ribbon-tag:before {
    left: 0;
}

.ribbon-tag:after {
    right: 0;
}

.dealwrapper.green .ribbon-tag {
    background: rgb(96, 203, 96);
    background: -moz-linear-gradient(top, rgb(96, 203, 96) 0%, rgb(91, 193, 70) 50%, rgb(6, 168, 0) 51%, rgb(82, 219, 54) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(96, 203, 96)), color-stop(50%, rgb(91, 193, 70)), color-stop(51%, rgb(6, 168, 0)), color-stop(100%, rgb(82, 219, 54)));
    background: -webkit-linear-gradient(top, rgb(96, 203, 96) 0%, rgb(91, 193, 70) 50%, rgb(6, 168, 0) 51%, rgb(82, 219, 54) 100%);
    background: -o-linear-gradient(top, rgb(96, 203, 96) 0%, rgb(91, 193, 70) 50%, rgb(6, 168, 0) 51%, rgb(82, 219, 54) 100%);
    background: -ms-linear-gradient(top, rgb(96, 203, 96) 0%, rgb(91, 193, 70) 50%, rgb(6, 168, 0) 51%, rgb(82, 219, 54) 100%);
    background: linear-gradient(to bottom, rgb(96, 203, 96) 0%, rgb(91, 193, 70) 50%, rgb(6, 168, 0) 51%, rgb(82, 219, 54) 100%);
    filter    : progid:DXImageTransform.Microsoft.gradient(startColorstr='#cb60b3', endColorstr='#db36a4', GradientType=0);
}

.dealwrapper.yellow .ribbon-tag {
    background: rgb(201, 203, 96);
    background: -moz-linear-gradient(top, rgb(201, 203, 96) 0%, rgb(193, 185, 70) 50%, rgb(168, 157, 0) 51%, rgb(219, 203, 54) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(201, 203, 96)), color-stop(50%, rgb(193, 185, 70)), color-stop(51%, rgb(168, 157, 0)), color-stop(100%, rgb(219, 203, 54)));
    background: -webkit-linear-gradient(top, rgb(201, 203, 96) 0%, rgb(193, 185, 70) 50%, rgb(168, 157, 0) 51%, rgb(219, 203, 54) 100%);
    background: -o-linear-gradient(top, rgb(201, 203, 96) 0%, rgb(193, 185, 70) 50%, rgb(168, 157, 0) 51%, rgb(219, 203, 54) 100%);
    background: -ms-linear-gradient(top, rgb(201, 203, 96) 0%, rgb(193, 185, 70) 50%, rgb(168, 157, 0) 51%, rgb(219, 203, 54) 100%);
    background: linear-gradient(to bottom, rgb(201, 203, 96) 0%, rgb(193, 185, 70) 50%, rgb(168, 157, 0) 51%, rgb(219, 203, 54) 100%);
    filter    : progid:DXImageTransform.Microsoft.gradient(startColorstr='#cb60b3', endColorstr='#db36a4', GradientType=0);
}

.dealwrapper.red .ribbon-tag {
    background: rgb(203, 96, 96);
    background: -moz-linear-gradient(top, rgb(203, 96, 96) 0%, rgb(193, 70, 70) 50%, rgb(168, 0, 0) 51%, rgb(219, 54, 54) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(203, 96, 96)), color-stop(50%, rgb(193, 70, 70)), color-stop(51%, rgb(168, 0, 0)), color-stop(100%, rgb(219, 54, 54)));
    background: -webkit-linear-gradient(top, rgb(203, 96, 96) 0%, rgb(193, 70, 70) 50%, rgb(168, 0, 0) 51%, rgb(219, 54, 54) 100%);
    background: -o-linear-gradient(top, rgb(203, 96, 96) 0%, rgb(193, 70, 70) 50%, rgb(168, 0, 0) 51%, rgb(219, 54, 54) 100%);
    background: -ms-linear-gradient(top, rgb(203, 96, 96) 0%, rgb(193, 70, 70) 50%, rgb(168, 0, 0) 51%, rgb(219, 54, 54) 100%);
    background: linear-gradient(to bottom, rgb(203, 96, 96) 0%, rgb(193, 70, 70) 50%, rgb(168, 0, 0) 51%, rgb(219, 54, 54) 100%);
    filter    : progid:DXImageTransform.Microsoft.gradient(startColorstr='#cb60b3', endColorstr='#db36a4', GradientType=0);
}


.card.shadow hr {
    margin: 5px 0 0 0;
}


.action-box-content .bg-icon {
    position : absolute;
    font-size: 100px;
    opacity  : 0.1;
    top      : 35%;
    right    : 40px;
}

.bg-icon-modal {
    position : absolute;
    font-size: 200px;
    opacity  : 0.1;
    top      : 35%;
    left     : 10%;
}


.card-header {
    padding         : 6px 26px;
    background-color: transparent;
}

.card-header h4 {
    margin: 0;
}

.card-rounded {
    height       : 100%;
    min-height   : 265px;
    max-height   : 275px;
    border-radius: 1rem;
}

.card-footer {
    background: transparent;
    position  : absolute;
    bottom    : 10px;
    width     : 90%;
    height    : 55px;
    padding   : 25px 0px 0px 0px;
    border-top: 0px;
}

.card-footer-2 {
    background: transparent;
    position  : absolute;
    bottom    : 10px;
    width     : 90%;
    height    : 55px;
    padding   : 15px 0px 0px 0px;
    border-top: 0px;
}

.card-empty {
    position  : absolute;
    text-align: center;
    top       : 90%;
    left      : 50%;
    height    : 100%;
    width     : 100%;
    transform : translate(-50%, -50%);
}

.img-thumbnail {
    max-height: 50px;
    max-width : 50px;
}

h5 .text-muted {
    font-size  : 12px;
    font-weight: 600;
}


.text-date {
    color      : cornflowerblue;
    font-size  : 14px;
    font-weight: 500;
}

.box-description {
    text-align : left;
    padding-top: 5px;
    margin     : 5px 0;
    height     : 100%;
    min-height : 130px;
    /* max-height : 170px; */
}

.text-muted-span {
    display    : block;
    font-size  : 13px !important;
    font-weight: 600 !important;
    font-style : normal !important;
    color      : #6c757d !important;
}


.text-muted-span-sm {
    display    : block;
    font-size  : 15px !important;
    font-weight: 100 !important;
    font-style : normal !important;
    color      : #6c757d !important;
}

.text-date-span-sm {
    display    : block;
    font-size  : 15px !important;
    font-weight: 600 !important;
    font-style : normal !important;
    color      : #0d6efd !important;
}

.text-muted-p {
    font-size    : 18px !important;
    font-weight  : 600 !important;
    font-style   : normal !important;
    color        : #000000 !important;
    margin-bottom: 0 !important;
    margin-top   : 0 !important;
}

.font-weight-bold {
    font-weight: bold !important;
}

.font-weight-normal {
    font-weight: normal !important;
}

.box-description h6 {
    font-size                : 16px;
    -webkit-text-fill-color  : black;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: rgba(248, 248, 248, 1);
    color                    : black;
    margin                   : 0px;
}

.p-1 {
    padding: 5px !important;
}

.p-2 {
    padding: 10px !important;
}

.p-3 {
    padding: 15px !important;
}

.pt-1 {
    padding-top: 5px !important;
}

.pt-2 {
    padding-top: 10px !important;
}

.pt-3 {
    padding-top: 15px !important;
}

.pt-4 {
    padding-top: 20px !important;
}

.pt-5 {
    padding-top: 25px !important;
}

.pb-1 {
    padding-bottom: 5px !important;
}

.pb-2 {
    padding-bottom: 10px !important;
}

.pb-3 {
    padding-bottom: 15px !important;
}

.pb-4 {
    padding-bottom: 20px !important;
}

.pb-5 {
    padding-bottom: 25px !important;
}


.fill:hover,
.fill:focus {
    box-shadow: inset 7.5em 0 0 0 rgb(58 58 58 / 54%);
    opacity   : 0.8;
}


.search-box {
    position: relative;
    width   : 100%;
}

#searchform {
    display  : block;
    margin   : 0 auto;
    width    : 100%;
    max-width: 500px;
    transform: translateY(10%);
}

#search-bar {
    display           : block;
    -webkit-appearance: none;
    -moz-appearance   : none;
    -ms-appearance    : none;
    appearance        : none;
    outline           : 0;
    width             : 100%;
    padding           : .5em .5em;
    font-size         : 1.2em;
    border            : 1px solid #e4efe9 !important;
    border-radius     : 1rem;
    height            : 40px;
}

.output {
    list-style: none;
    width     : 100%;
    min-height: 0px;
    border-top: 0 !important;
    color     : #767676;
    font-size : .75em;
    transition: min-height 0.2s;
    position  : absolute;
    z-index   : 5;
    padding   : 0;
}

.output,
#search-bar {
    background: #fff;
    border    : 1px solid #e4efe9 !important;
    margin-top: 0;
}

.prediction-item {
    font-size : 14px;
    padding   : .5em .75em;
    transition: color 0.2s, background 0.2s;
}

.output:hover .focus {
    background: #fff;
    color     : #767676;
}

.prediction-item:hover,
.focus,
.output:hover .focus:hover {
    background: #ddd;
    color     : #333;
}

.prediction-item:hover {
    cursor: pointer;
}

.prediction-item strong {
    color: #333;
}

.prediction-item:hover strong {
    color: #000;
}

.header-box {
    border-bottom: 1px solid #e4efe9 !important;
    margin       : 0;
    padding      : 0;
    height       : 55px;
    max-width    : 230px;
}

.footer-box {
    border-top: 1px solid #e4efe9 !important;
    height    : 40px;
    bottom    : 0;
    padding   : 10px 0px 0;
}

.no-tagihan {
    text-align : center;
    font-size  : 25px !important;
    font-weight: 600 !important;
    font-style : normal !important;
    opacity    : 0.7;
    color      : #6c757d !important;
    margin     : 0;
    line-height: 100px;
}

.loader {
    width         : 100%;
    position      : relative;
    height        : 30px;
    padding-bottom: 20px;
}

#loader {
    position  : absolute;
    width     : 100%;
    text-align: center;
}

/* Build Bootstrap's Grid */
.col-xs-1 {
    grid-column: span 1;
}

.col-xs-2 {
    grid-column: span 2;
}

.col-xs-3 {
    grid-column: span 3;
}

.col-xs-4 {
    grid-column: span 4;
}

.col-xs-5 {
    grid-column: span 5;
}

.col-xs-6 {
    grid-column: span 6;
}

.col-xs-7 {
    grid-column: span 7;
}

.col-xs-8 {
    grid-column: span 8;
}

.col-xs-9 {
    grid-column: span 9;
}

.col-xs-10 {
    grid-column: span 10;
}

.col-xs-11 {
    grid-column: span 11;
}

.col-xs-12 {
    grid-column: span 12;
}

.col-sm-1 {
    grid-column: span 1;
}

.col-sm-2 {
    grid-column: span 2;
}

.col-sm-3 {
    grid-column: span 3;
}

.col-sm-4 {
    grid-column: span 4;
}

.col-sm-5 {
    grid-column: span 5;
}

.col-sm-6 {
    grid-column: span 6;
}

.col-sm-7 {
    grid-column: span 7;
}

.col-sm-8 {
    grid-column: span 8;
}

.col-sm-9 {
    grid-column: span 9;
}

.col-sm-10 {
    grid-column: span 10;
}

.col-sm-11 {
    grid-column: span 11;
}

.col-sm-12 {
    grid-column: span 12;
}

.col-md-1 {
    grid-column: span 1;
}

.col-md-2 {
    grid-column: span 2;
}

.col-md-3 {
    grid-column: span 3;
}

.col-md-4 {
    grid-column: span 4;
}

.col-md-5 {
    grid-column: span 5;
}

.col-md-6 {
    grid-column: span 6;
}

.col-md-7 {
    grid-column: span 7;
}

.col-md-8 {
    grid-column: span 8;
}

.col-md-9 {
    grid-column: span 9;
}

.col-md-10 {
    grid-column: span 10;
}

.col-md-11 {
    grid-column: span 11;
}

.col-md-12 {
    grid-column: span 12;
}

.col-lg-1 {
    grid-column: span 1;
}

.col-lg-2 {
    grid-column: span 2;
}

.col-lg-3 {
    grid-column: span 3;
}

.col-lg-4 {
    grid-column: span 4;
}

.col-lg-5 {
    grid-column: span 5;
}

.col-lg-6 {
    grid-column: span 6;
}

.col-lg-7 {
    grid-column: span 7;
}

.col-lg-8 {
    grid-column: span 8;
}

.col-lg-9 {
    grid-column: span 9;
}

.col-lg-10 {
    grid-column: span 10;
}

.col-lg-11 {
    grid-column: span 11;
}

.col-lg-12 {
    grid-column: span 12;
}

.col-xl-1 {
    grid-column: span 1;
}

.col-xl-2 {
    grid-column: span 2;
}

.col-xl-3 {
    grid-column: span 3;
}

.col-xl-4 {
    grid-column: span 4;
}

.col-xl-5 {
    grid-column: span 5;
}

.col-xl-6 {
    grid-column: span 6;
}

.col-xl-7 {
    grid-column: span 7;
}

.col-xl-8 {
    grid-column: span 8;
}

.col-xl-9 {
    grid-column: span 9;
}

.col-xl-10 {
    grid-column: span 10;
}

.col-xl-11 {
    grid-column: span 11;
}

.col-xl-12 {
    grid-column: span 12;
}

/* Bootstrap grid break points */
/* extra small */
@media (max-width: 576px) {

    /* helper classes */
    .col-xs-1 {
        grid-column: span 1;
    }

    .col-xs-2 {
        grid-column: span 2;
    }

    .col-xs-3 {
        grid-column: span 3;
    }

    .col-xs-4 {
        grid-column: span 4;
    }

    .col-xs-5 {
        grid-column: span 5;
    }

    .col-xs-6 {
        grid-column: span 6;
    }

    .col-xs-7 {
        grid-column: span 7;
    }

    .col-xs-8 {
        grid-column: span 8;
    }

    .col-xs-9 {
        grid-column: span 9;
    }

    .col-xs-10 {
        grid-column: span 10;
    }

    .col-xs-11 {
        grid-column: span 11;
    }

    .col-xs-12 {
        grid-column: span 12;
    }

    .hidden-xs {
        display: none;
    }

    .container {
        max-width: 1200px;
    }
}

/* small */
@media (min-width: 576px) and (max-width: 768px) {

    /* helper classes */
    .col-sm-1 {
        grid-column: span 1;
    }

    .col-sm-2 {
        grid-column: span 2;
    }

    .col-sm-3 {
        grid-column: span 3;
    }

    .col-sm-4 {
        grid-column: span 4;
    }

    .col-sm-5 {
        grid-column: span 5;
    }

    .col-sm-6 {
        grid-column: span 6;
    }

    .col-sm-7 {
        grid-column: span 7;
    }

    .col-sm-8 {
        grid-column: span 8;
    }

    .col-sm-9 {
        grid-column: span 9;
    }

    .col-sm-10 {
        grid-column: span 10;
    }

    .col-sm-11 {
        grid-column: span 11;
    }

    .col-sm-12 {
        grid-column: span 12;
    }

    .hidden-sm {
        display: none;
    }
}

/* medium */
@media (min-width: 768px) and (max-width: 992px) {

    /* helper classes */
    .col-md-1 {
        grid-column: span 1;
    }

    .col-md-2 {
        grid-column: span 2;
    }

    .col-md-3 {
        grid-column: span 3;
    }

    .col-md-4 {
        grid-column: span 4;
    }

    .col-md-5 {
        grid-column: span 5;
    }

    .col-md-6 {
        grid-column: span 6;
    }

    .col-md-7 {
        grid-column: span 7;
    }

    .col-md-8 {
        grid-column: span 8;
    }

    .col-md-9 {
        grid-column: span 9;
    }

    .col-md-10 {
        grid-column: span 10;
    }

    .col-md-11 {
        grid-column: span 11;
    }

    .col-md-12 {
        grid-column: span 12;
    }

    .hidden-md {
        display: none;
    }
}

/* large */
@media (min-width: 992px) and (max-width: 1200px) {

    /* helper classes */
    .col-lg-1 {
        grid-column: span 1;
    }

    .col-lg-2 {
        grid-column: span 2;
    }

    .col-lg-3 {
        grid-column: span 3;
    }

    .col-lg-4 {
        grid-column: span 4;
    }

    .col-lg-5 {
        grid-column: span 5;
    }

    .col-lg-6 {
        grid-column: span 6;
    }

    .col-lg-7 {
        grid-column: span 7;
    }

    .col-lg-8 {
        grid-column: span 8;
    }

    .col-lg-9 {
        grid-column: span 9;
    }

    .col-lg-10 {
        grid-column: span 10;
    }

    .col-lg-11 {
        grid-column: span 11;
    }

    .col-lg-12 {
        grid-column: span 12;
    }

    .hidden-lg {
        display: none;
    }
}

/*extra large */
@media (min-width: 1200px) {

    /* helper classes */
    .col-xl-1 {
        grid-column: span 1;
    }

    .col-xl-2 {
        grid-column: span 2;
    }

    .col-xl-3 {
        grid-column: span 3;
    }

    .col-xl-4 {
        grid-column: span 4;
    }

    .col-xl-5 {
        grid-column: span 5;
    }

    .col-xl-6 {
        grid-column: span 6;
    }

    .col-xl-7 {
        grid-column: span 7;
    }

    .col-xl-8 {
        grid-column: span 8;
    }

    .col-xl-9 {
        grid-column: span 9;
    }

    .col-xl-10 {
        grid-column: span 10;
    }

    .col-xl-11 {
        grid-column: span 11;
    }

    .col-xl-12 {
        grid-column: span 12;
    }

    .hidden-xl {
        display: none;
    }
}

.hidebottomborder {
    border-bottom: none;
}

.offset-1 {
    grid-column-start: 2;
    grid-column-end  : span 11;
}

.push-1 {
    grid-column-start: 2;
    grid-column-end  : span 1;
}

.pull-1 {
    grid-column-start: 11;
    grid-column-end  : span 1;
}

.offset-2 {
    grid-column-start: 3;
    grid-column-end  : span 10;
}

.push-2 {
    grid-column-start: 3;
    grid-column-end  : span 2;
}

.pull-2 {
    grid-column-start: 10;
    grid-column-end  : span 2;
}

.offset-3 {
    grid-column-start: 4;
    grid-column-end  : span 9;
}

.push-3 {
    grid-column-start: 4;
    grid-column-end  : span 3;
}

.pull-3 {
    grid-column-start: 9;
    grid-column-end  : span 3;
}

.offset-4 {
    grid-column-start: 5;
    grid-column-end  : span 8;
}

.push-4 {
    grid-column-start: 5;
    grid-column-end  : span 4;
}

.pull-4 {
    grid-column-start: 8;
    grid-column-end  : span 4;
}

.offset-5 {
    grid-column-start: 6;
    grid-column-end  : span 7;
}

.push-5 {
    grid-column-start: 6;
    grid-column-end  : span 5;
}

.pull-5 {
    grid-column-start: 7;
    grid-column-end  : span 5;
}

.offset-6 {
    grid-column-start: 7;
    grid-column-end  : span 6;
}

.push-6 {
    grid-column-start: 7;
    grid-column-end  : span 6;
}

.pull-6 {
    grid-column-start: 6;
    grid-column-end  : span 6;
}

.offset-7 {
    grid-column-start: 8;
    grid-column-end  : span 5;
}

.push-7 {
    grid-column-start: 8;
    grid-column-end  : span 7;
}

.pull-7 {
    grid-column-start: 5;
    grid-column-end  : span 7;
}

.offset-8 {
    grid-column-start: 9;
    grid-column-end  : span 4;
}

.push-8 {
    grid-column-start: 9;
    grid-column-end  : span 8;
}

.pull-8 {
    grid-column-start: 4;
    grid-column-end  : span 8;
}

.offset-9 {
    grid-column-start: 10;
    grid-column-end  : span 3;
}

.push-9 {
    grid-column-start: 10;
    grid-column-end  : span 9;
}

.pull-9 {
    grid-column-start: 3;
    grid-column-end  : span 9;
}

.offset-10 {
    grid-column-start: 11;
    grid-column-end  : span 2;
}

.push-10 {
    grid-column-start: 11;
    grid-column-end  : span 10;
}

.pull-10 {
    grid-column-start: 2;
    grid-column-end  : span 10;
}

.offset-11 {
    grid-column-start: 12;
    grid-column-end  : span 1;
}

.push-11 {
    grid-column-start: 12;
    grid-column-end  : span 11;
}

.pull-11 {
    grid-column-start: 1;
    grid-column-end  : span 11;
}

.offset-12 {
    grid-column-start: 13;
    grid-column-end  : span 0;
}

.push-12 {
    grid-column-start: 13;
    grid-column-end  : span 12;
}

.pull-12 {
    grid-column-start: 0;
    grid-column-end  : span 12;
}

.hidden {
    display  : none;
    animation: blowUpModalTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.overlay {
    position        : fixed;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter : blur(3px);
    z-index         : 5;
    transition      : all 1s linear;
    animation       : blowUpModal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes blowUpModal {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes blowUpModalTwo {
    0% {
        transform: scale(1);
        opacity  : 1;
    }

    100% {
        transform: scale(0);
        opacity  : 0;
        display  : none;
    }
}

.lobibox-notify.rounded {
    border-radius: 5px !important;
}

#aniimated-thumbnials {
    float: right;
}


@media screen and (max-width: 450px) {
    .featured  {
        grid-area    : overview;
        justify-self : center;
        padding-left : 1em;
        padding-right: 1em;
        width        : 100%;
        max-width    : 1040px;
        -ms-display  : grid;
        display      : grid;
    }
}

@media screen and (min-width: 640px) {
    #landingPage .hero .hero-overlay .hero-content .hero-title {
        font-size  : 3.5em;
        line-height: 1.5em;
        color      : white;
    }

    #landingPage .hero .hero-overlay .hero-content .hero-slogan {
        font-size  : 1.5em;
        line-height: 1.2em;
        color      : white;
    }
}

@media screen and (max-width: 1000px) {
    .featured  .action-wrapper {
        -ms-display          : grid;
        display              : grid;
        grid-template-columns: repeat(2, minmax(26ch, 1fr));
        grid-auto-rows       : minmax(285px, auto);
        grid-gap             : 2em;
    }

    .text-right {
        text-align: right !important;
    }

}

@media screen and (max-width: 650px) {
    .featured  .action-wrapper {
        -ms-display          : grid;
        display              : grid;
        grid-template-columns: repeat(1, minmax(26ch, 1fr));
        grid-auto-rows       : minmax(285px, auto);
        grid-gap             : 2em;
    }
}


.add-button {
    position: absolute;
    top: 1px;
    left: 1px;
  }

  .grid-content {
    display              : grid;
    grid-template-columns: repeat(12, 1fr);
    /*cols x freespace*/
    grid-gap             : 1.5em;
    position             : relative;
}

/* header */
.paragraph {
	max-width: 94%;
	height: auto;
	color: inherit;
}
.heading-xl {
	font-family: inherit;
	font-size: clamp(2.648rem, 6vw, 4.241rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -1px;
}
.heading-lg {
	font-family: inherit;
	font-size: clamp(2.179rem, 5vw, 3.176rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -1px;
}
.heading-md {
	font-family: inherit;
	font-size: clamp(1.794rem, 4vw, 2.379rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -1px;
}
.darkmode .btn-darken {
	background-color: var(--color-blue-500);
}
.header-web {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: var(--color-white-100);
	box-shadow: var(--shadow-medium);
}
.darkmode .header-web {
	background-color: var(--color-black-400);
}
.navbar-web {
	display: flex;
	flex-direction: row;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	width: 90%;
	height: 3.5rem;
	margin: 0 auto;
}
.brand {
	font-family: inherit;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.25;
	margin-right: auto;
	letter-spacing: -1px;
	text-transform: uppercase;
	color: var(--color-blue-500);
}
.darkmode .brand {
	color: var(--color-white-100);
}
.menu-web {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 10;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	color: var(--color-black-400);
	background-color: var(--color-white-100);
	box-shadow: var(--shadow-medium);
	transition: all 0.4s ease-in-out;
}
.darkmode .menu-web {
	color: var(--color-white-100);
	background-color: var(--color-black-400);
}
.menu-web.is-active {
	left: 0;
}

.menu-web-inner {
    padding-right: 5px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	row-gap: 0.5rem;
	margin-top: 5rem;
}
.menu-web-link {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	color: inherit;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
	.brand{
		z-index: 12;
	}
}
@media only screen and (min-width: 48rem) {
	.menu-web {
		position: relative;
		top: 0;
		left: 0;
		width: auto;
		height: auto;
		padding: 0rem;
		margin-left: auto;
		background: none;
		box-shadow: none;
		transition: none;
   }
	.menu-web-inner {
		display: flex;
		flex-direction: row;
		column-gap: 1rem;
		margin: 0 auto;
   }
	.menu-web-link {
		text-transform: capitalize;
   }
}
.burger {
	position: relative;
	display: block;
	cursor: pointer;
	user-select: none;
	order: -1;
	z-index: 12;
	width: 1.5rem;
	height: 1rem;
	margin-right: 1rem;
	border: none;
	outline: none;
	background: none;
	visibility: visible;
	transform: rotate(0deg);
	transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
	.burger {
		display: none;
		visibility: hidden;
   }
}
.burger-line {
	position: absolute;
	display: block;
	right: 0;
	width: 100%;
	height: 2px;
	border: none;
	outline: none;
	opacity: 1;
	transform: rotate(0deg);
	background-color: var(--color-black-300);
	transition: 0.25s ease-in-out;
}
.darkmode .burger-line {
	background-color: var(--color-white-100);
}
.burger-line:nth-child(1) {
	top: 0px;
}
.burger-line:nth-child(2) {
	top: 0.5rem;
}
.burger-line:nth-child(3) {
	top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
	top: 0.5rem;
	transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
	right: -1.5rem;
	opacity: 0;
	visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
	top: 0.5rem;
	transform: rotate(-135deg);
}
.switch {
	position: relative;
	display: block;
	cursor: pointer;
	user-select: none;
	z-index: 9;
	margin-left: 5rem;
	margin-right: 0.5rem;
}
.switch-light, .switch-dark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: center;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-in;
}
.switch-light {
	font-size: 1.45rem;
	visibility: visible;
	color: var(--color-black-300);
}
.darkmode .switch-light {
	font-size: 0rem;
	visibility: hidden;
}
.switch-dark {
	font-size: 0rem;
	visibility: hidden;
	color: var(--color-white-100);
}
.darkmode .switch-dark {
	font-size: 1.45rem;
	visibility: visible;
}
.banner-column {
	position: relative;
	display: grid;
	align-items: center;
	row-gap: 2rem;
}
@media only screen and (min-width: 48rem) {
	.banner-column {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-content: center;
		margin-top: 4rem;
   }
}
@media only screen and (min-width: 64rem) {
	.banner-column {
		grid-template-columns: 1fr max-content;
		column-gap: 2rem;
   }
}
.banner-image {
	display: block;
	max-width: 25rem;
	height: auto;
	object-fit: cover;
	justify-self: center;
}
@media only screen and (min-width: 48rem) {
	.banner-image {
		order: 1;
		max-width: 28rem;
		height: auto;
   }
}
@media only screen and (min-width: 64rem) {
	.banner-image {
		max-width: 33rem;
		height: auto;
   }
}
.banner-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 1.5rem;
}

.menu-web-item{
	list-style-type: none;  
    padding: 5px;
    border-radius: 25px;
    transition: .3s ease;
}

.menu-web-item.active{
    padding: 5px;
    border-radius: 25px;
    background: rgb(2 149 163);
}

.menu-web-item.active .menu-link{
    color: white !important;
    margin: 0px 5px;
}

.menu-web-item:hover{
	color: white;
	background: rgb(11,178,193);
    border: none !important;
    transition: .3s ease;
}

.menu-web-item:hover a {
    color: white !important;
    margin-right: 5px;
    transition: .3s ease;
}

.menu-web-item:hover .menu-link{
	color: white;
    transition: .3s ease;
}

.menu-web-item a .icon {
    padding: 0 5px 0 10px;
    max-width: 20px;
}

.menu-link {
	font-weight: 500;
}

.fs-7{
	font-size: 0.9rem !important;
}

.app-btn-secondary:hover{
    color:rgb(37, 150, 190);
    border:1px solid rgb(37, 150, 190);
    background:#fff
}
@media only screen and (max-width: 767px) {
    .menu-web-inner{
        display: block;
        padding-left: 0px !important;
        height: 100%;
    }

    .menu-web .nav-icon {
        position: absolute;
        left: 1rem;
        top: 0.9rem;
    }

    .menu-web-item{
        display: block;
        list-style-type: none;  
        padding: 0px !important;
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 25px;
        border-top-left-radius: 25px;
        transition: .3s ease;
    }

    .menu-web {
        max-width: 250px;
    }
    
    .menu-web-item a {
        color: rgb(37, 150, 190) !important;
        display: block;
        padding: 0.875rem 1rem;
        position: relative;
        display: block;
        padding-left: 3rem;
        border-left: 3px solid rgba(0,0,0,0);
        margin: 0px 0px;
    }

    .menu-web-item:hover{
        width: 100%;
        margin-left: 2rem;
        transition: .3s ease;
    }
    .menu-web-inner {
        padding-right: 0px !important;
    }
    .menu-web-item.active{
        padding: 5px;
        margin-left: 1rem;
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 25px;
        border-top-left-radius: 25px;
        width: 100%;
        background: rgb(2 149 163);
        border-right: 5px solid rgb(165 196 203);
    }
}

.btn.disable {
    pointer-events: none;
    cursor: context-menu;
    background-color: rgb(13, 122, 161);
}

.spin-effect{
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
    /* tabs */
   
    .tabs{
        width: 100%;
        text-align: center;
    }
    .tabs section{
        width: 100%;
        text-align: left;
    }
    .tabs label{
        min-width: 40%;
    }

#tsum-tabs h1 {
    padding: 50px 0;
    font-weight: 400;
    text-align: center;
  }
  
  #tsum-tabs p {
    margin: 0 0 20px;
    line-height: 1.5;
  }
  
  #tsum-tabs section {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid #ddd;
  }
  
  #tsum-tabs input {
    display: none;
  }
  
  #tsum-tabs label {
    display: inline-block;
    margin: 0 0 -1px;
    padding: 15px 25px;
    font-weight: 600;
    text-align: center;
    color: #bbb;
    border: 1px solid transparent;
  }
  
  #tsum-tabs label:before {
    font-family: fontawesome;
    font-weight: normal;
    margin-right: 10px;
  }
  
  #tsum-tabs label:hover {
    color: #888;
    cursor: pointer;
  }
  
  #tsum-tabs input:checked + label {
    color: #555;
    border: 1px solid #ddd;
    border-top: 3px solid rgb(2 149 163);
    border-bottom: 1px solid #fff;
  }
  
  #tsum-tabs #tab1:checked ~ #unpaid,
  #tsum-tabs #tab2:checked ~ #paid,
  #tsum-tabs #tab3:checked ~ #content3,
  #tsum-tabs #tab4:checked ~ #content4 {
    display: block;
  }
  
  @media screen and (max-width: 650px) {
    #tsum-tabs label {
      font-size: 12px;
    }
    #tsum-tabs label:before {
      margin: 0;
      font-size: 12px;
    }
  }
  
  @media screen and (max-width: 400px) {
    #tsum-tabs label {
      padding: 10px 5px;
    }
  }

  .btnp-05{
    padding: 0.5rem 0.5rem;
  }

  .scollhorizontal
{
	height: 550px;
    overflow-y: auto;
}

.scollhorizontal::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.scollhorizontal::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.scollhorizontal::-webkit-scrollbar-thumb
{
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122, 203, 217)),
									   color-stop(0.72, rgb(73, 137, 189)),
									   color-stop(0.86, rgb(28, 100, 148)));
}

.shadow-4{
    box-shadow: 0 1px 4px rgb(0 0 0 / 0.2);
}

.rounded-start-25{
    border-top-left-radius: 25px !important;
    border-bottom-left-radius: 25px !important;
}

.rounded-end-25{
    border-top-right-radius: 25px !important;
    border-bottom-right-radius: 25px !important;
}


#loading-wrapper {
    background-color: white;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99999;
  }

#loading-wrapper.none {
    animation: scale-display--reversed 0.3s;
    animation-fill-mode: forwards;
    display: inline-flex;
  }

@keyframes scale-display {
    0% {
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
   }
    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
   }
}
@keyframes scale-display--reversed {
    0% {
        display: inline-flex;
        opacity: 1;
   }
    50% {
        background-color: transparent;
   }
    99% {
        display: inline-flex;
        opacity: 0;
   }
    100% {
        display: none;
        opacity: 0;
        transform: scale(0, 1);
        -webkit-transform: scale(0, 1);
   }
}

  #loading-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #999;
    width: 100px;
    height: 30px;
    margin: -7px 0 0 -45px;
    text-align: center;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 20px;
  }
  
  #loading-content {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 170px;
    height: 170px;
    margin: -85px 0 0 -85px;
    border: 3px solid #F00;
  }
  
  #loading-content:after {
    content: "";
    position: absolute;
    border: 3px solid #0F0;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
  }
  
  #loading-content:before {
    content: "";
    position: absolute;
    border: 3px solid #00F;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
  }
  
  #loading-content {
    border: 3px solid transparent;
    border-top-color: #4D658D;
    border-bottom-color: #4D658D;
    border-radius: 50%;
    -webkit-animation: loader 2s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
  }
  
  #loading-content:before {
    border: 3px solid transparent;
    border-top-color: #D4CC6A;
    border-bottom-color: #D4CC6A;
    border-radius: 50%;
    -webkit-animation: loader 3s linear infinite;
      -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 3s linear infinite;
  }
  
  #loading-content:after {
    border: 3px solid transparent;
    border-top-color: #84417C;
    border-bottom-color: #84417C;
    border-radius: 50%;
    -webkit-animation: loader 1.5s linear infinite;
    animation: loader 1.5s linear infinite;
      -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
  }
  
  @-webkit-keyframes loaders {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes loader {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .copy-text{
    cursor: -webkit-grabbing; 
    cursor: grabbing;
  }