.mt-6{
  margin-top: 20px;
}
.fontsize-1{
  font-size: 13px;
}

.rmob-cookie-setting-modal .modalDialog {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.61);
  height: 100vh;
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-in !important;
  -moz-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
  pointer-events: none ;
  overflow-x: scroll;
}

.rmob-cookie-setting-modal .modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}

.rmob-cookie-setting-modal .modalDialog>div {
  max-width: 1200px;
  width: 55%;
  position: relative;
  margin: 10% auto;
  padding: 20px;
  border-radius: 3px;
  background: #fff;
}
@media screen and (max-width:700px) {
  .rmob-cookie-setting-modal .modalDialog>div {
    max-width: 1200px;
    width: 85%;
    position: relative;
    margin: 10% auto;
    padding: 20px;
    border-radius: 3px;
    background: #fff;
  }
}

.rmob-cookie-setting-modal .close {
  background: #5956e9;
  color: #fff;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 34px;
  height: 34px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  padding-top: 5px;
}

.rmob-cookie-setting-modal .close:hover {
  background: #302eba;
}

.rmob-cookie-setting-modal table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.rmob-cookie-setting-modal table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

.rmob-cookie-setting-modal table tr {
 
  padding: .35em;
  border-left: none;
  border-right: none;
}

.rmob-cookie-setting-modal table th,
.rmob-cookie-setting-modal table td {
  padding: .625em;
  text-align: center;
}

.rmob-cookie-setting-modal table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 650px) {
  .rmob-cookie-setting-modal table {
    border: none !important;
  }

  .rmob-cookie-setting-modal table caption {
    font-size: 1.3em;
  }

  .rmob-cookie-setting-modal table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .rmob-cookie-setting-modal table tr {
    border-bottom: 1.5px solid #232323;
    display: block;
    margin-bottom: .625em;
  }

  .rmob-cookie-setting-modal table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 14px;
    text-align: center;
  }

  .rmob-cookie-setting-modal table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  .rmob-cookie-setting-modal table td:last-child {
    border-bottom: 0;
  }
  tbody, td, tfoot, th, thead, tr {
    border: none;
}
}
tbody, td, tfoot, th, thead, tr {
font-size: 14px;
}
.rmob-cookie-setting-modal .font-weight-800 {
  font-weight: 800;
}

.rmob-cookie-setting-modal .table-content {
  max-height: 380px;
 
}

.rmob-cookie .rmob-button {
  border-radius: 12px;
  margin-bottom: 7px !important;
  background-color: #5956e9;
  border:none;
  font-size: 14px;
  padding: 6px;
  width: 220px;
  transition: all 0.5s;
  } 
.rmob-cookie .rmob-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.rmob-cookie .rmob-button span:after {

  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
 
}


.rmob-cookie .rmob-button:hover span:after {
  opacity: 1;
  right: 0;
}



.rmob-button {
  color: #fff;
  text-align: center;
  padding: 20px;
}

.rmob-cookie-setting-modal .rmob-button-content {
  margin-top: 10px;
  text-align: center;
}

.rmob-cookie-setting-modal .switch {
  position: absolute;
  display: block;
  right: 6%;
  width: 48px;
  height: 28px;
}

/* Hide default HTML checkbox */
.rmob-cookie-setting-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.rmob-cookie-setting-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c9c9c9;
  -webkit-transition: .4s;
  transition: .4s;
}

.rmob-cookie-setting-modal .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  
}

.rmob-cookie-setting-modal input:checked+.slider {
  background-color: #5956e9;
}

.rmob-cookie-setting-modal input:focus+.slider {
  box-shadow: 0 0 1px #5956e9;
}

.rmob-cookie-setting-modal input:checked+.slider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
}

/* Rounded sliders */
.rmob-cookie-setting-modal .slider.round {
  border-radius: 34px;
}

.rmob-cookie-setting-modal .slider.round:before {
  border-radius: 50%;
  width: 20px !important;
  height: 20px !important;
}

#cookiePermissionContent {
  align-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
}



.cookie-bar {
  background: #f8f9fa;
  position: fixed;
  width: 395px;
  bottom: 0;
  right: 0;
  color: #616161;
  padding: 25px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #2125292c;
  line-height: normal;
}

@media  screen and (max-width:650px) {
  .cookie-bar {
    width: 100%;
  }
}
@media  screen and (min-width:1340px) {
  .cookie-bar {
    font-size: 16px;
    width: 600px;
  }
  .rmob-cookie .rm-button {
  font-size: 16px;
  }
}
@media (max-width: 500px) {
 

  .cookie-bar .input-group-lg {
    flex-direction: column;
  }}
.text-justify {
  text-align: justify !important;
}

.justify-content-center {
  justify-content: center !important;
}


@media screen and (max-width:400px) {
  .cookie-bar .input-group-lg {
    flex-direction: column;
    
  }
}
  


@media (min-width:1300px) {
  .mr-3 {
    margin-right: 1rem !important;
  }
}

.rmob-cookie .rm-button {
  border-radius: 8px;
  background-color: #5956e9;
  border: none;
  padding: 5px;
  padding-inline: 7px;
  margin-right: 5px;
  transition: all 0.5s;
  text-align: center;
  cursor: pointer;
  margin-bottom: 4px;
  text-decoration: none;
}

.rmob-cookie .rm-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.rmob-cookie .rm-button span:after {

  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.rmob-cookie .rm-button:hover span {
  padding-right: 25px;
}

.rmob-cookie .rm-button:hover span:after {
  opacity: 1;
  right: 0;
}



.rm-button {
  color: #fff;
  text-align: center;
  padding: 20px;
}

#openModal-cookie .detail-info {
  font-weight: bold;
  text-decoration: underline;
}



#openModal-cookie .collapsible {

  cursor: pointer;
}



#openModal-cookie tr[id*="cookie_content"] {

  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.d-flex-main {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.justify-content-center-main {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.rm-button,
#cookieSettingsModal a {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.25rem;
  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;
}
@media  screen and (min-width:1340px) {
 
  .rm-button,
#cookieSettingsModal a {

  font-size: 19px;
 
}
}
.rm-button:focus,
.rm-button:hover {
  text-decoration: none;
}

.rm-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.rm-button.disabled,
.rm-button:disabled {
  opacity: 0.65;
}

.rm-button:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.rm-button:not(:disabled):not(.disabled):active {
  background-image: none;
}

a.rm-button.disabled {
  pointer-events: none;
}

.cookie-policy-text {
  text-decoration: none;
  color: #5956e9;
}

.row-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-main,
.col-md-12-main,
.col-md-2-main,
.col-md-4-main,
.col-md-6-main {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 600px) {
  .col-md-2-main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-4-main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6-main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-12-main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}



.row-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.rm_collapse_link{
  cursor: pointer;
  }

/*custom table*/
table.table-main {
  border-collapse: collapse;
}

.table-main {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table-main td,
.table-main th {
  padding: 0.75rem;
  vertical-align: top;
  
}






.col-main,
.col-md-12-main,
.col-md-2-main,
.col-md-4-main,
.col-md-6-main {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-main {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}



/*collapse*/
input[type='checkbox'] {
  display: none;
}

.wrap-collabsible {
  margin: 1.2rem 0;
}

.lbl-toggle {
  display:flex;
  align-items: center;
  font-weight: bold;
  font-size: 13px;
  padding: 12px;
  color: #000000;
  background: #f0f0f0;
  cursor: pointer;
  border-radius: 16px;
  transition: all 0.25s ease-out;
}



.lbl-toggle::before {
  content: ' ';
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);
  transition: transform .2s ease-out;
}

.toggle:checked+.lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}

.toggle:checked+.lbl-toggle+.collapsible-content {
  max-height: 4000px;
}

.toggle:checked+.lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
  background: rgba(240, 240, 240, 0.372);
  border-bottom: 1px solid rgb(112 0 255 / 45%);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: .5rem 1rem;
}

.collapsible-content p {
  margin-bottom: 0;
}

@media screen and (max-width:650px) {
  .lbl-toggle {
 
    font-size: 15px;
    text-align: start;
   
  }
 
}

@media screen and (max-width:850px) {
 
  .rmob-cookie-setting-modal .switch {
    position: absolute;
    display: block;
    right: 7%;
    width: 48px;
    height: 28px;
    margin-left: 12px;
  }
}
.text-none{
  text-decoration: none;
}