:root {
    --mpt-background-color: #FFE53B;
    --mpt-background: linear-gradient(147deg, #FFE53B 0%, #FF2525 74%);
    --mpt-gradient-hov: linear-gradient(to right, hsl(190 100% 60%), hsl(150 100% 50%));
    --mpt-bg1: rgba(255, 255, 255, 0.6);
    --mpt-color1: #FF552A;
    --mpt-color1-hov: #ed441a;
    --mpt-gray: rgb(243 244 246);
    --mpt-gray1: rgb(229 231 235);
    --mpt-gray2: #d1d5db;
}

.mpt-container  {
    font-family: 'Poppins', sans-serif;
    line-height: 150%;
    background-color: var(--mpt-background-color);
    background: var(--mpt-background);
    border-radius: 20px;
    margin: 20px 20px 0 0;
    padding: 30px;
}
.wrap.container-fluid.mpt-container .mpt-logo {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
}
.mpt-inner-container  {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 30px 15px 30px;
    margin: auto;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}
/*****************************************
                TABS
*****************************************/
.mpt-tab.nav-tab {
    padding: 10px 30px;
    font-size: 15px;
    background-color: var(--mpt-gray);
    color: #333;
    border: none;
    border-radius: 10px;
}
.mpt-tab.nav-tab:hover, .mpt-tab.nav-tab.nav-tab-active {
    background-color: var(--mpt-color1);
    color: #fff;
    border: none;
}
.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, h1.nav-tab-wrapper {
    border-bottom: 0;
}

/*****************************************
                Segment
*****************************************/
.mpt-segment {
    position: relative;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    margin: 25px 0;
    border-radius: 10px
}
.mpt-segment h2 {
    position: relative;
    display: inline-block;
    z-index: 0;
    margin: auto;
    font-size: 18px;
    text-transform: uppercase;
}
/*****************************************
                Form
*****************************************/
.mpt-container .mpt-input,
.mpt-container .mpt-select,
.mpt-container .mpt-textarea {
    width: 100%;
    padding: 2px 10px;
    color: #333;
    border: 1px solid var(--mpt-gray2);
    border-radius: 10px;
}
.mpt-container .mpt-textarea {
    height:150px;
    padding: 10px;
}
.mpt-container .mpt-disabled {
    background-color: #f9fffe;
}

.mpt-container .mpt-submit, .mpt-btn {
    display: block;
    width: 100%;
    background-color: var(--mpt-color1);
    color: #fff;
    border: 0;
    border-radius: 5px;
    padding: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.mpt-container .mpt-submit:hover, .mpt-btn:hover {
    background-color: var(--mpt-color1-hov);
    color: #fff;
    cursor: pointer;
}

/*****************************************
            TOGGLE CHECKBOX
*****************************************/
.mpt-container .mpt-toggle {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 36px;
}
  
.mpt-container .mpt-toggle input {
    display:none;
}
  
.mpt-container .mpt-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
  
.mpt-container .mpt-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 5px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.mpt-container input:checked + .mpt-toggle-slider {
    background-color: var(--mpt-color1);
}

.mpt-container input:focus + .mpt-toggle-slider {
    box-shadow: 0 0 1px var(--mpt-color1);
}

.mpt-container input:checked + .mpt-toggle-slider:before {
    -webkit-transform: translateX(33px);
    -ms-transform: translateX(33px);
    transform: translateX(33px);
}
  
.mpt-container .mpt-toggle-slider.mpt-toggle-round {
    border-radius: 5px;
}

.mpt-container .mpt-toggle-slider.mpt-toggle-round:before {
    border-radius: 3px;
}
/*****************************************
                ALERTS
*****************************************/
.mpt-alert {
    padding: 10px;
    padding-left: 15px;
    border: 1px solid #3b8fd2;
    border-left: 4px solid #3b8fd2;
    margin: 10px 0 5px;
    line-height: 150%;
    color: #fff;
    border-radius: 5px;
}
.mpt-alert a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dotted;
}
.mpt-alert.mpt-info {
    background-color: #47A8F5;
}
.mpt-alert.mpt-success {
    background-color: #29ce76;
    border-color: #1baa5e;
}
.mpt-alert.mpt-note a {
    color: #333;
}
.mpt-alert.mpt-note {
    color: #333;
    background-color: #fff;
    border-color: #333;
}
.mpt-alert.mpt-note .closebtn {
    color: #333;
}
.closebtn {
    color: white;
    float: right;
    font-size: 22px;
    line-height: 18px;
    cursor: pointer;
    transition: 0.3s;
}
.closebtn:hover {
    color: black;
}
.mpt-comment {
    font-size: 12px;
    margin-bottom: 0;
    color: #888;
}

.mpt-tiktokicon {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 100;
}
.mpt-tiktokicon img {
    width: 80px;
    height: 80px;
}



/* .col-xs, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-offset-0, .col-xs-offset-1, .col-xs-offset-10, .col-xs-offset-11, .col-xs-offset-12, .col-xs-offset-2, .col-xs-offset-3, .col-xs-offset-4, .col-xs-offset-5, .col-xs-offset-6, .col-xs-offset-7, .col-xs-offset-8, .col-xs-offset-9 {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
} */


.mpt-log {
    max-height: 600px;
    overflow: auto;
}

.mpt-log::-webkit-scrollbar-track
{
	background-color: #f1f1f1;
}

.mpt-log::-webkit-scrollbar
{
	width: 8px;
}

.mpt-log::-webkit-scrollbar-thumb
{
	background-color: #ddd;
}

.mpt-accordion {
    max-width: 100%;
    background: linear-gradient(to bottom right, #FFF, #f7f7f7);
    background: var(--mpt-gray);
    margin: 0 auto;
    border-radius: 10px;
}
.mpt-accordion-heading {
    font-size:13px;
    font-weight: 700;
    border-bottom: 1px solid #e7e7e7;
    padding: 15px;
    cursor: pointer;  
}
.mpt-accordion-heading:nth-last-child(2){
    border-bottom:0; 
}
.mpt-accordion-heading:hover {
    background: var(--mpt-gray1);
}
.mpt-accordion-heading:first-child:hover {
    border-radius: 3px 3px 0 0;
}
.mpt-accordion-heading:nth-last-child(2):hover{
    border-radius:0 0 3px 3px;
}
.mpt-accordion-heading::before {
    content: '';
    vertical-align: middle;
    display: inline-block;
    border-top: 7px solid #555;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    float: right;
    transform: rotate(0);
    transition: all 0.5s;
    margin-top: 5px;
}
.mpt-accordion-active.mpt-accordion-heading::before {
    transform: rotate(-180deg);
}
.mpt-accordion-not-active.mpt-accordion-heading::before {
    transform: rotate(0deg);
}
.mpt-accordion-contents {
	display: none;
	background: rgb(249 250 251);
	padding: 5px 15px;
    color: #7f8fa4;
    font-size: 13px;
    line-height: 1.5;
}
.mpt-accordion-contents ul li {
    background-color: var(--mpt-gray);
    font-size: 11px;
    padding: 10px;
}
.mpt-accordion-contents ul li:nth-child(odd) {
    background-color: rgb(236 237 242);
}

/*****************************************
                Tooltip
*****************************************/
[tooltip] {
    position: relative; /* opinion 1 */
  }
  
  /* Applies to all tooltips */
  [tooltip]::before,
  [tooltip]::after {
    text-transform: none; /* opinion 2 */
    font-size: .9em; /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
  }
  [tooltip]::before {
    content: '';
    border: 5px solid transparent; /* opinion 4 */
    z-index: 1001; /* absurdity 1 */
  }
  [tooltip]::after {
    content: attr(tooltip); /* magic! */
    
    /* most of the rest of this is opinion */
    font-family: Helvetica, sans-serif;
    text-align: center;
    
    /* 
      Let the content set the size of the tooltips 
      but this will also keep them from being obnoxious
      */
    min-width: 3em;
    max-width: 70em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 1.2ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
    background: #333;
    color: #fff;
    z-index: 1000; /* absurdity 2 */
  }
  
  /* Make the tooltips respond to hover */
  [tooltip]:hover::before,
  [tooltip]:hover::after {
    display: block;
  }
  
  /* don't show empty tooltips */
  [tooltip='']::before,
  [tooltip='']::after {
    display: none !important;
  }
  
  /* FLOW: UP */
  [tooltip]:not([flow])::before,
  [tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #333;
  }
  [tooltip]:not([flow])::after,
  [tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
  }
  [tooltip]:not([flow])::before,
  [tooltip]:not([flow])::after,
  [tooltip][flow^="up"]::before,
  [tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
  }
  
  /* FLOW: DOWN */
  [tooltip][flow^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #333;
  }
  [tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
  }
  [tooltip][flow^="down"]::before,
  [tooltip][flow^="down"]::after {
    left: 50%;
    transform: translate(-50%, .5em);
  }
  
  /* FLOW: LEFT */
  [tooltip][flow^="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #333;
    left: calc(0em - 5px);
    transform: translate(-.5em, -50%);
  }
  [tooltip][flow^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-.5em, -50%);
  }
  
  /* FLOW: RIGHT */
  [tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #333;
    right: calc(0em - 5px);
    transform: translate(.5em, -50%);
  }
  [tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
  }

  /* KEYFRAMES */
  @keyframes tooltips-vert {
    to {
      opacity: .9;
      transform: translate(-50%, 0);
    }
  }
  
  @keyframes tooltips-horz {
    to {
      opacity: .9;
      transform: translate(0, -50%);
    }
  }
  
  /* FX All The Things */ 
  [tooltip]:not([flow]):hover::before,
  [tooltip]:not([flow]):hover::after,
  [tooltip][flow^="up"]:hover::before,
  [tooltip][flow^="up"]:hover::after,
  [tooltip][flow^="down"]:hover::before,
  [tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
  }
  
  [tooltip][flow^="left"]:hover::before,
  [tooltip][flow^="left"]:hover::after,
  [tooltip][flow^="right"]:hover::before,
  [tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
  }
