@keyframes confetti-slow {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  100% {
    transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
  }
}
@keyframes confetti-medium {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  100% {
    transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
  }
}
@keyframes confetti-fast {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  100% {
    transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
  }
}
.confetti-page-container {
  top: 0px !important;
  width: 100vw;
  min-height: 100vh;
  background: #ffffff;
  border: 1px solid white;
  display: fixed;
  top: 0px;
}

.confetti-container {
  perspective: 700px;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.confetti {
  position: absolute;
  z-index: 1;
  top: -10px;
  border-radius: 0%;
}
.confetti--animation-slow {
  animation: confetti-slow 2.25s linear 1 forwards;
}
.confetti--animation-medium {
  animation: confetti-medium 1.75s linear 1 forwards;
}
.confetti--animation-fast {
  animation: confetti-fast 1.25s linear 1 forwards;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 28px;
  text-align: center;
  font-weight: 600;
}

h6 {
  font-size: 14px;
}
h6 span {
  font-weight: 200;
}

a {
  text-decoration: none;
}

small {
  font-size: 12px;
}

p {
  color: rgb(107, 114, 128);
}

.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 30;
  font-size: 22px;
}
.top-header img {
  max-width: 50px;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .top-header img {
    max-width: 10%;
  }
}
.top-header .kyc-banner {
  padding: 10px;
  background-color: rgb(245, 158, 11);
  width: 85vw;
}
.top-header .kyc-banner p {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  text-align: center;
}
.top-header .kyc-banner a {
  color: #000;
}
@media screen and (max-width: 1024px) {
  .top-header .kyc-banner {
    width: 100%;
  }
}

.header h1 {
  margin: 0;
  padding: 20px 20px 0 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}
.header p {
  padding: 0px 20px 0 20px;
}
.header hr {
  border-style: dashed;
}

.logo {
  font-family: "Work Sans", sans-serif;
  font-size: 25px;
  font-weight: 300;
}
.logo strong {
  font-weight: 700;
}
.logo img {
  max-width: 50px;
}

@media screen and (max-width: 1024px) {
  #signIn header {
    text-align: center;
  }
}
#signIn section {
  display: flex;
  align-items: center;
  min-height: 90vh;
}
#signIn section #content {
  background-color: transparent;
}
#signIn section h1 {
  font-weight: 600;
}
#signIn form {
  margin: 0 auto;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #signIn form {
    width: 90%;
  }
}
#signIn p.text-muted {
  font-size: 15px;
  font-weight: normal;
}

#activation .congratulations, #reset-password .congratulations {
  position: relative;
  min-height: 70vh;
}
@media screen and (max-width: 1024px) {
  #activation .congratulations h2, #reset-password .congratulations h2 {
    font-size: 28px;
  }
}
#activation .congratulations p, #reset-password .congratulations p {
  margin: 0 auto;
  font-size: 18px;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  #activation .congratulations p, #reset-password .congratulations p {
    width: 90%;
  }
}

.congratulations {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}
.congratulations h2 {
  font-size: 40px;
}
.congratulations p {
  font-size: 20px;
  font-weight: normal;
}

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: inherit;
  background-color: #FFFFFF;
  padding: 0 0 150px 0;
  z-index: 40;
}
#sidebar .profile {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  flex-direction: column;
}
#sidebar .profile p {
  color: #6a7283;
  padding: 10px;
}
#sidebar .profile .initials {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #8FC93A;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
#sidebar ul {
  margin: 30px 0;
  padding: 0;
  list-style-type: none;
  height: 100vh;
  overflow: scroll;
  padding-bottom: 200px;
  scrollbar-width: none;
}
#sidebar ul::-webkit-scrollbar {
  display: none;
}
#sidebar ul li {
  margin-top: 10px;
}
#sidebar ul li:not(.no-border) {
  border-bottom: 1px solid #efefef;
}
#sidebar ul li:not(.mb-3) {
  padding: 0 15px;
}
#sidebar ul li a {
  display: block;
  font-size: 16px;
  color: #000000;
  margin-bottom: 10px;
  background-color: #FFF;
  padding: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
}
#sidebar ul li a svg {
  margin-right: 5px;
}
#sidebar ul li a.active, #sidebar ul li a:hover {
  color: #1E91D6;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
}
#sidebar ul li a.active svg, #sidebar ul li a:hover svg {
  fill: #0072bb;
}
#sidebar ul li span {
  position: absolute;
  right: 15px;
  top: 15px;
}
#sidebar ul li span svg {
  fill: transparent !important;
  stroke: #007bff;
}
#sidebar .company_logo {
  padding: 30px;
}
#sidebar .company_logo img {
  max-width: 40%;
}
@media screen and (max-width: 1024px) {
  #sidebar {
    display: none;
  }
}

.content {
  padding: 190px 50px 50px 50px;
}
@media screen and (max-width: 1024px) {
  .content {
    padding: 180px 30px 30px 30px;
  }
}

#content {
  background-color: #f8fafc;
}
#content p {
  font-size: 13px;
}
#content .section-header {
  background-color: #f5f5f5;
  padding: 20px 30px 10px 30px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}
#content .accordion-item button.accordion-button {
  box-shadow: none !important;
}
#content .accordion-item button.accordion-button[aria-expanded=true] {
  background-color: rgba(97, 211, 122, 0.1607843137) !important;
  color: #000;
  font-weight: 500;
}
#content .accordion-item label span {
  color: #e0e0e0;
}
#content section .card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border: none;
  overflow: hidden;
}
#content section .card.orange-block {
  border-color: rgb(245, 158, 11);
  background-color: #fffbeb;
}
#content section .card .card-title {
  display: block;
  font-size: 24px;
  font-weight: 600;
}
#content section .card.blue-block {
  background-color: rgba(30, 145, 214, 0.1);
  border: 1px solid #0072bb;
}
#content section .list-group li {
  padding: 0;
}
#content section .list-group li a {
  display: block;
  color: #000000;
  padding: 20px;
  text-decoration: none;
  background-color: transparent;
}
#content section .list-group li a:hover {
  color: #0072bb;
}
#content section .list-group li a svg {
  margin-right: 10px;
}
#content section .list-group li:hover {
  background-color: #f8f8fb;
}
#content section .tab-content {
  display: none;
}
#content section .tab-content.active {
  display: block;
}
#content section .tabbar {
  overflow: hidden;
}
#content section .tabbar ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#content section .tabbar ul li {
  display: inline-block;
}
#content section .tabbar ul li a {
  display: block;
  padding: 10px;
  font-size: 15px;
  color: rgb(82, 82, 82);
  text-decoration: none;
  text-align: center;
  width: 200px;
}
#content section .tabbar ul li a.active, #content section .tabbar ul li a:hover {
  color: #f95192;
  border-bottom: 2px solid #f95192;
}
@media screen and (max-width: 1024px) {
  #content section .tabbar ul li a {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #content section .tabbar ul li {
    width: 49%;
  }
}
#content section .profileImage {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  overflow: hidden;
}
#content section .profileImage img {
  max-width: 100%;
}
#content section#earnings .card .row .d-flex:last-child {
  justify-content: end;
}
#content section#earnings .withdraw-block p.text-muted {
  font-size: 11px;
}
@media screen and (max-width: 1024px) {
  #content section#earnings .col-md-4 {
    margin-bottom: 10px;
    text-align: left !important;
  }
  #content section#earnings .card .row .d-flex:last-child {
    justify-content: left;
  }
}
#content section .card h6 {
  font-weight: 400;
}
#content section .card h5 {
  color: #f95192;
  font-size: 15px;
}
#content section .card .profile-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  padding: 3px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border: 1px solid rgb(245, 158, 11);
}
#content section .card .profile-image img {
  max-width: 100%;
}
#content section .card .platform-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#content section .card .platform-list li {
  display: inline-block;
}
#content section#dashboard .header {
  padding: 100px 0;
}
#content section#dashboard .header h1 {
  font-size: 36px;
  font-weight: 600;
}
#content section#dashboard .header p {
  font-size: 16px;
}
#content section#create-reviews h1 {
  display: flex;
  align-items: center;
}
#content section#create-reviews h1 svg {
  margin-left: 10px;
  width: 30px;
}
#content section#create-reviews .icon-container {
  display: flex;
  align-items: center;
}
#content section#create-reviews .icon-container svg {
  margin-left: 10px;
  width: 20px;
}
#content section#challenges li svg {
  width: 30px;
}
#content section#create-challenges .icon-container svg {
  margin-top: 10px;
  width: 80px;
}
#content section .icon-container svg {
  margin-top: 10px;
  width: 80px;
}
#content .input-group .input-group-text:first-child {
  min-width: 180px;
}

hr.border-dashed {
  border-style: dashed;
}

.circle {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-width: 2px;
  border-style: solid;
  padding: 5px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
}
.circle.green {
  border-color: rgb(16, 185, 129);
}

/*

    TABLE

*/
table {
  border: 1px solid #efefef;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table tr {
  border: 1px solid #ddd;
  padding: 0.35em;
}

table th,
table td {
  font-size: 13px;
  padding: 0.625em;
  text-align: center;
}

table th {
  font-size: 0.85em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #f8f8f8;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }
  table caption {
    font-size: 1.3em;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }
  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  table td:last-child {
    border-bottom: 0;
  }
}
/*

    FOOTER

*/
.footer {
  position: relative;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.footer ul {
  margin: 10px 0;
  padding: 0;
}
.footer ul li {
  display: inline-block;
}
.footer ul li a {
  display: inline-block !important;
  font-size: 12px !important;
  color: #6a7283 !important;
  padding: 0 5px !important;
  border: 1px solid transparent;
  text-decoration: none;
}
.footer ul li a:hover {
  box-shadow: none !important;
  border: 1px solid transparent !important;
  text-decoration: underline !important;
}
.footer ul li span {
  color: #a4abb9;
}

/*

    OVERRIDES

*/
input[type=text], input[type=number] {
  padding: 1rem 0.75rem;
}

.badge.text-bg-success {
  background-color: #ecfdf5 !important;
  color: rgb(16, 185, 129) !important;
}

svg.danger {
  fill: #d9534f;
}
svg.success {
  fill: #5cb85c;
}
svg.warning {
  fill: #f0ad4e;
}

.btn-add {
  display: flex;
  color: #39834c;
  font-weight: 500;
  padding-left: 10px;
}
.btn-add svg {
  background-color: #eaffee;
  border-radius: 5px;
  margin-right: 10px;
}

.text-bg-warning {
  color: rgb(245, 158, 11) !important;
  background-color: #fffbeb !important;
  font-size: 12px;
  font-weight: normal;
}

.errorfield {
  border-color: #ff0000 !important;
}

.dn-err-msg, .err-msg {
  margin-top: 10px;
  font-size: 12px;
  color: #ff0000 !important;
  text-align: left;
}
.dn-err-msg span, .err-msg span {
  margin-top: 10px;
}

/*

MODAL 

*/
.modal .modal-content {
  min-height: 400px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
}

/*

    BUTTONS

*/
.btn-take-selfie {
  background-color: #e9e9ed;
  height: 80px;
  width: 80px;
  border: none !important;
  border-radius: 100% !important;
  -webkit-border-radius: 100% !important;
  -moz-border-radius: 100% !important;
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgba(255, 255, 255, 0.5), inset -0.2em -0.2em 0.2em 0 rgba(0, 0, 0, 0.5) !important;
}
.btn-take-selfie svg {
  fill: #000;
}
.btn-take-selfie:hover, .btn-take-selfie:active, .btn-take-selfie:focus {
  border: 0 !important;
  background-color: rgb(245, 158, 11);
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgb(245, 158, 11), inset -0.2em -0.2em 0.2em 0 rgba(0, 0, 0, 0.5) !important;
}
.btn-take-selfie:hover svg, .btn-take-selfie:active svg, .btn-take-selfie:focus svg {
  fill: #FFFFFF;
}

.btn-register {
  font-size: 12px;
  background-color: #f7f8fa;
  border-radius: 20px;
  padding: 10px 20px;
}
.btn-register:hover {
  border-color: #e1e5ea;
}

.btn {
  border: 2px solid #FFFFFF;
  min-width: 80px;
}

.btn-primary, .btn-dark, .btn-danger {
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 500;
  border-color: transparent !important;
  border-radius: 0;
  min-width: 120px;
}
.btn-primary.radius, .btn-dark.radius, .btn-danger.radius {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
}
.btn-primary.green, .btn-dark.green, .btn-danger.green {
  background-color: #8FC93A;
}
.btn-primary:hover, .btn-primary:active, .btn-dark:hover, .btn-dark:active, .btn-danger:hover, .btn-danger:active {
  border-color: transparent !important;
}

.btn-delete {
  border-radius: 0 10px 10px 0;
  min-width: auto;
}

svg.green path {
  fill: #8FC93A;
}

.btn-outline-primary {
  border-color: inherit !important;
  border-width: 1px;
  border-radius: 0;
}

.btn-secondary {
  background-color: #f95192;
  border-radius: 0;
}
.btn-secondary:hover, .btn-secondary:active {
  border-color: transparent !important;
  background-color: rgba(249, 81, 146, 0.8);
}

.choices .choices__inner {
  font-size: 18px;
  color: #000000;
  background-color: transparent;
  border-color: #e1e5ea;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.choices .choices__item {
  color: #000000;
  opacity: 1;
  text-align: left;
}
.choices .choices__list {
  text-align: left;
}

.truncate {
  display: inline-block; /* To contain the pseudo-element */
  position: relative;
  width: 200px; /* Adjust based on your font size */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.truncate::after {
  content: "";
  position: absolute;
  right: 0;
  background-color: white; /* Match the background of the container */
}

/* Override default Bootstrap outline and box-shadow styles */
/* Input fields and form controls */
input[type=text],
.form-control:focus,
input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus,
select.form-control:active,
.btn:focus,
button.btn:focus,
.form-select:focus,
a.btn:focus {
  outline: none; /* Remove the outline */
  box-shadow: none !important; /* Remove the box-shadow */
}

.btn:active,
button.btn:active,
a.btn:active {
  background-color: transparent !important;
  border: 2px solid #0072bb !important;
  color: #000 !important;
}

.btn,
button.btn,
a.btn {
  position: relative;
}

.btn:has(.loader),
button.btn:has(.loader),
a.btn:has(.loader) {
  display: flex;
}

/* Custom focus outline (optional) */
.form-control:focus,
input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus,
.btn:focus,
button.btn:focus,
a.btn:focus,
.btn:hover,
button.btn:hover,
a.btn:hover {
  outline: none; /* Custom outline (light grey in this case) */
  box-shadow: none; /* Custom box-shadow */
}

/* Optional: Focus on links */
a:focus {
  outline: none; /* Remove the outline */
  box-shadow: none; /* Remove the box-shadow */
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #cccccc;
  pointer-events: none;
  background-color: #f2f2f2;
  border-color: transparent;
}
.btn.disabled svg,
.btn:disabled svg,
fieldset:disabled .btn svg {
  fill: #cccccc;
  background-color: #f2f2f2;
}

button:disabled {
  color: #cccccc;
}
button:disabled img {
  filter: grayscale(100%);
}
button:disabled:after {
  opacity: 0.3;
}

.list-group-item:hover {
  background-color: #f8f8fb;
}
.list-group-item:hover p {
  color: #0072bb;
}
.list-group-item:visited {
  color: #000;
  border: 1px solid #dee2e6;
  background-color: #ffffff;
}
.list-group-item:visited:hover {
  background-color: #f8f8fb;
}
.list-group-item:visited:hover p {
  color: #0072bb;
}

/*

    CHAT CONTAINER

*/
.chat-container {
  background: white;
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  overflow: scroll;
}
.chat-container .chat-box {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chat-container .message {
  display: flex;
  flex-direction: column;
  max-width: 70%;
}
.chat-container .left {
  align-self: flex-start;
}
.chat-container .right {
  align-self: flex-end;
}
.chat-container .bubble {
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.4;
}
.chat-container .left .bubble {
  background-color: #e5e5ea;
  color: #000;
  border-bottom-left-radius: 0;
}
.chat-container .right .bubble {
  background-color: #007aff;
  color: white;
  border-bottom-right-radius: 0;
}
.chat-container .meta {
  font-size: 12px;
  margin-top: 4px;
  color: #777;
}
.chat-container .input-area {
  display: flex;
  padding: 30px 10px 10px 10px;
  border-top: 1px solid #ccc;
}
.chat-container .input-area input {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}
.chat-container .input-area button {
  margin-left: 10px;
  padding: 10px 15px;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/*

    CUSTOM SELECT


*/
.select-menu {
  position: relative;
  width: 100%;
  z-index: 50;
}

.select-menu .select-btn {
  display: flex;
  height: 55px;
  background: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  border: 1px solid #dee2e6;
}

.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}

.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}

.select-menu .options {
  position: absolute;
  padding: 5px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dee2e6;
  display: none;
  width: 100%;
}

.select-menu.active .options {
  display: block;
}

.options .option {
  display: flex;
  height: 55px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}

.options .option:hover {
  background: #f2f2f2;
}

.option i {
  font-size: 25px;
  margin-right: 12px;
}

.option .option-text {
  font-size: 15px;
  color: #333;
}

.options .option.disabled {
  cursor: auto;
}
.options .option.disabled img {
  filter: grayscale(100%);
}
.options .option.disabled .option-text {
  color: #cccccc;
}

.text-danger {
  color: #ff2f4c !important;
}

.alert {
  background-color: transparent;
}
.alert.alert-warning {
  color: #f0ad4e;
  border-color: #f0ad4e;
}
.alert.alert-danger {
  color: #d9534f;
  border-color: #d9534f;
}
.alert.alert-success {
  color: #5cb85c;
  border-color: #5cb85c;
}

.loader {
  margin-left: 10px;
  width: 25px;
  padding: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
  display: inline-block;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
.disclaimer {
  padding: 20px;
  font-size: 11px !important;
  color: #6a7283;
}

.form-switch label {
  font-size: 12px;
  cursor: pointer;
}

.form-check img {
  cursor: pointer;
  max-width: 100%;
}

.form-switch .form-check-input {
  cursor: pointer;
}

.form-switch .form-check-input:focus {
  border-color: rgba(0, 0, 0, 0.25);
  outline: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.form-switch .form-check-input:checked {
  background-color: #30D158;
  border-color: #000;
  border: none;
}

/* MARQUEE */
.marquee {
  margin: 0 auto;
  width: 100%;
  height: 30px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 50px;
  height: 30px;
  content: "";
  z-index: 1;
}
.marquee:before {
  left: 0;
  background: linear-gradient(to right, white 5%, transparent 100%);
}
.marquee:after {
  right: 0;
  background: linear-gradient(to left, white 5%, transparent 100%);
}

.marquee__content {
  display: flex;
  width: 300% !important;
  line-height: 30px;
  animation: marquee 20s linear infinite forwards;
}
.marquee__content:hover {
  animation-play-state: paused;
}
.marquee__content a {
  color: #000;
}
.marquee__content a span {
  color: #0072bb;
}

.list-inline {
  display: flex;
  justify-content: space-around;
  font-size: 12px;
  width: 33.33%;
  /* reset list */
  list-style: none;
  padding: 0;
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6%);
  }
}
/*
    INTERNATIONAL TELEPHONE INPUT
*/
.iti--allow-dropdown {
  z-index: 20;
  width: 100%;
}
.iti--allow-dropdown .iti__tel-input {
  padding: 1rem 0.75rem 1rem 48px;
}
.iti--allow-dropdown .iti__country {
  padding: 5px 10px !important;
  outline: none !important;
}
.iti--allow-dropdown ul#iti-0__country-listbox {
  list-style-type: none !important;
}/*# sourceMappingURL=style.css.map */