/*!***************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./scss/ar-cookies-consent.scss ***!
  \***************************************************************************************************************************************************/
/*
2022 (c) azre.xyz
version 0.1.3|20220107
MIT licence or Apache licence 2
- basically free for use
- leave note of copyright would be appreciated, thanks

checkbox-toggle
- design html input checkbox `<input type="checkbox">` with some html elements
- code only CSS based (no JS)
- customizable CSS (SASS)

-------------------------------------------------------------------------------
html template:
-------------------------------------------------------------------------------
<label class="checkbox-toggle">
  <input type="checkbox" value="1">
  <span class="cbt-container">
    <span class="cbt-bar">
        <span class="cbt-btn"></span>
    </span>
  </span>
</label>
-------------------------------------------------------------------------------
*/
/* --- checkbox-toggle --- */
.checkbox-toggle {
  position: relative;
  margin: 0;
  white-space: nowrap;
  font-size: 1em;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox-toggle.checkbox-toggle-sm {
  font-size: 0.8rem;
}
.checkbox-toggle.checkbox-toggle-lg {
  font-size: 2rem;
}

.checkbox-toggle input[type=checkbox] {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.checkbox-toggle input[type=checkbox] + .cbt-container {
  display: inline-block;
  position: relative;
  width: 2.2em;
  font-size: 1.2em;
  padding: 0em 0.1em;
  margin-top: -0.1em;
  background: transparent;
  vertical-align: middle;
}
.checkbox-toggle input[type=checkbox] + .cbt-container .cbt-bar {
  display: block;
  position: relative;
  width: 100%;
  height: 1em;
  border-width: 0.05em;
  border-style: solid;
  border-color: #444444;
  border-radius: 1em;
  background: #fff;
  transition: all 0.3s ease 0.15s;
}
.checkbox-toggle input[type=checkbox] + .cbt-container .cbt-bar .cbt-btn {
  display: block;
  position: absolute;
  top: -0.05em;
  left: 0;
  z-index: 3;
  width: 1em;
  height: 1em;
  border-width: 0.05em;
  border-style: solid;
  border-color: #444444;
  border-radius: 50%;
  background: #fff;
  transform: translate(-0.05em, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease 0.1s;
}
.checkbox-toggle input[type=checkbox]:active + .cbt-container .cbt-bar .cbt-btn {
  box-shadow: 0 0 0 0.5em rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}
.checkbox-toggle input[type=checkbox]:checked + .cbt-container .cbt-bar {
  border-color: #444444;
  background: #444444;
}
.checkbox-toggle input[type=checkbox]:checked + .cbt-container .cbt-bar .cbt-btn {
  transform: translate(0.95em, 0);
}
.checkbox-toggle input[type=checkbox]:disabled + .cbt-container {
  opacity: 0.6;
}

/* checkbox-toggle - invert toggle position */
.checkbox-toggle.checkbox-toggle-invert input[type=checkbox] + .cbt-container .cbt-bar .cbt-btn {
  transform: translate(0.95em, 0);
}
.checkbox-toggle.checkbox-toggle-invert input[type=checkbox]:checked + .cbt-container .cbt-bar .cbt-btn {
  transform: translate(-0.05em, 0);
}

/* checkbox-toggle - color change example */
.checkbox-toggle.checkbox-toggle-primary input[type=checkbox] + .cbt-container .cbt-bar {
  background: #0568d1;
}
.checkbox-toggle.checkbox-toggle-primary input[type=checkbox]:checked + .cbt-container .cbt-bar {
  background: #202626;
}
/* --- checkbox-toggle - END --- */
.ar-cookies-consent-banner {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2147483646;
  width: 100%;
}
.ar-cookies-consent-banner.ar-ccb-show {
  visibility: visible;
  opacity: 1;
}

.ar-cookies-consent-banner .ar-ccb-in {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1rem;
  background-color: rgba(32, 38, 38, 0.9);
  color: #fff;
  box-shadow: 0 15px 15px 15px rgba(0, 0, 0, 0.5);
}

.ar-cookies-consent-banner .ar-ccb-in .ar-ccb-content {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.ar-cookies-consent-banner .ar-ccb-in .ar-ccb-content .ar-ccb-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .ar-cookies-consent-banner .ar-ccb-in .ar-ccb-content .ar-ccb-row {
    flex-direction: row;
  }
}

.ar-cookies-consent-banner .ar-ccb-in .ar-ccb-content .ar-ccb-row .ar-ccb-col {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .ar-cookies-consent-banner .ar-ccb-in .ar-ccb-content .ar-ccb-row .ar-ccb-col {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
    padding-right: 2em;
    padding-left: 2em;
  }
}

.ar-cookies-consent-banner .ar-ccb-in .ar-ccb-content .ar-ccb-row .ar-ccb-actions .ar-ccb-actions-in {
  display: flex;
  flex-direction: column;
}

.ar-cookies-consent-banner .ar-btn {
  display: inline-block;
  padding-top: 0.6em;
  padding-bottom: 0.5em;
  padding-right: 1.2em;
  padding-left: 1.2em;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.ar-cookies-consent-banner .ar-btn.ar-btn-agree {
  background-color: #0568d1;
  color: #fff;
  text-decoration: none;
  transition: background-color ease 0.3s;
}
.ar-cookies-consent-banner .ar-btn.ar-btn-agree:hover {
  background-color: rgb(4.25, 88.4, 177.65);
}

.ar-cookies-consent-banner .ar-btn-opt {
  margin-top: 1em;
  color: #fff;
}
.ar-cookies-consent-banner .ar-btn-opt:hover {
  text-decoration: none;
}

html.ar-cookies-consent-opt-open {
  overflow: hidden;
}
html.ar-cookies-consent-opt-open body {
  overflow: hidden;
}

.ar-cookies-consent-opt-modal {
  background-color: rgba(32, 38, 38, 0.8);
  display: flex;
  visibility: hidden;
  opacity: 0;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2147483647;
  overflow: auto;
  font-size: 1.6rem;
}
.ar-cookies-consent-opt-modal.ar-ccom-show {
  visibility: visible;
  opacity: 1;
}

.ar-cookies-consent-opt-modal .ar-btn {
  display: inline-block;
  padding-top: 0.6em;
  padding-bottom: 0.5em;
  padding-right: 1.2em;
  padding-left: 1.2em;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
}

.ar-cookies-consent-opt-modal .ar-btn.ar-btn-agree {
  background-color: #0568d1;
  color: #fff;
  text-decoration: none;
  transition: background-color ease 0.3s;
}
.ar-cookies-consent-opt-modal .ar-btn.ar-btn-agree:hover {
  background-color: rgb(4.25, 88.4, 177.65);
}

.ar-cookies-consent-opt-modal .ar-btn.ar-btn-save {
  border: 1px solid #0568d1;
  background-color: transparent;
  color: #0568d1;
  text-decoration: none;
  transition: background-color ease 0.3s;
}
.ar-cookies-consent-opt-modal .ar-btn.ar-btn-save:hover {
  border-color: rgb(4.25, 88.4, 177.65);
  color: rgb(4.25, 88.4, 177.65);
}

.ar-cookies-consent-opt-modal .ar-cco-modal-dialog {
  position: relative;
  width: 70rem;
  max-width: calc(100% - 1rem);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #fff;
  color: #202626;
}

.ar-cookies-consent-opt-modal .ar-cco-modal-dialog .ar-cc-opt-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 100;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.3rem;
  transform: rotate(45deg);
  cursor: pointer;
  font-size: 0;
  color: #202626;
}
.ar-cookies-consent-opt-modal .ar-cco-modal-dialog .ar-cc-opt-close::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 2rem;
  height: 0.2rem;
  background-color: #202626;
  transform: translate(50%, -50%);
}
.ar-cookies-consent-opt-modal .ar-cco-modal-dialog .ar-cc-opt-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 0.2rem;
  height: 2rem;
  background-color: #202626;
  transform: translate(50%, -50%);
}

.ar-cookies-consent-opt-modal .ar-cc-info-general .ar-ccig-heading {
  font-size: 1.4em;
  font-weight: 700;
}

.ar-cookies-consent-opt-modal .ar-cco-content .ar-cco-row {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-shrink: 0;
}
.ar-cookies-consent-opt-modal .ar-cco-content .ar-cco-row + .ar-cco-row {
  margin-top: 1rem;
}

.ar-cookies-consent-opt-modal .ar-cco-content .ar-cco-row .ar-cco-info {
  flex: 1;
  padding-right: 1rem;
}

.ar-cookies-consent-opt-modal .ar-cco-content .ar-cco-row .ar-cco-info .ar-cco-label {
  font-weight: 700;
  font-size: 1.1em;
}

.ar-cookies-consent-opt-modal .ar-cco-modal-dialog .ar-cco-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
