@charset "UTF-8";
/*
Theme Name: DitDepot.dk
Description: Tema til DitDepot. Baseret på SKLTN
Version: 1.0.0
*/
/** Google Fonts **/
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");
/** CSS Grid **/
@import "assets/scss/grid.min.css";
/** Variables **/
:root {
  --color-background: #F8F8F8;
  --color-font: #121212;
  --color-font-light: #353535;
  --color-primary: #427181;
  --color-secondary: #699FB0;
  --color-tertiary: #2F2E41;
  --color-cta: #ff7800;
  --color-cta-dark: #da6700;
  --color-light-gray: #e4e4e4;
  --color-red: #cb2d2d;
  --font-family: "Nunito", sans-serif;
  --font-size: 16px;
  --cubic-bezier: cubic-bezier(.32,.93,.95,.51);
}

/** CSS Reset **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/** Imports **/
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--color-background);
  color: var(--color-font);
  font-family: var(--font-family);
}

.dd-button {
  font-family: var(--font-family);
  border-radius: 50px;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 7px 7rem;
  cursor: pointer;
}
.dd-button:hover:not(.dd-button__cta), .dd-button:focus:not(.dd-button__cta) {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.dd-button__cta {
  background-color: var(--color-cta);
  border-color: var(--color-cta);
}
.dd-button__cta:hover, .dd-button__cta:focus {
  background-color: var(--color-cta-dark);
  border-color: var(--color-cta-dark);
}

.dd-contact-section label {
  font-weight: 700;
}
.dd-contact-section .wpcf7-not-valid-tip {
  background-color: #fff;
  border-left: 4px solid var(--color-red);
  padding: 10px 15px;
  margin-top: 5px;
  border-radius: 3px;
}
.dd-contact-section .wpcf7-response-output {
  padding: 10px 15px !important;
  border-radius: 3px;
  background: #fff;
  color: var(--color-cta);
  border: none !important;
  border-left: 4px solid var(--color-cta) !important;
  margin: 15px 0 !important;
}
.dd-contact-section input:not([type=submit]), .dd-contact-section textarea:not([type=submit]) {
  width: 100%;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
}
.dd-contact-section input[type=submit] {
  border: none;
  padding: 10px 35px;
  background-color: var(--color-tertiary);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  font-family: var(--font-family);
}

.dd-cta {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

.dd-footer {
  padding: 150px 0;
  background-color: var(--color-primary);
  color: #fff;
}
@media screen and (max-width: 480px) {
  .dd-footer {
    padding: 60px 0;
  }
}
.dd-footer address {
  font-size: 1.2rem;
  line-height: 2rem;
}
.dd-footer a {
  color: #fff;
  text-decoration: none;
}
.dd-footer a:hover, .dd-footer a:active, .dd-footer a:focus {
  color: #fff;
  text-decoration: underline;
}
.dd-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dd-footer nav ul > li {
  list-style: none;
  padding: 10px 0;
}

.dd-address__element {
  margin-bottom: 0.7rem;
}

.dd-contact__element {
  margin-bottom: 0.7rem;
}

.dd-splash {
  min-height: 550px;
  height: auto;
  background-color: var(--color-primary);
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 480px) {
  .dd-splash {
    min-height: 350px;
  }
  .dd-splash .dd-splash__title {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
}
.dd-splash:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  opacity: 0.5;
}
.dd-splash__title {
  font-weight: 800;
  font-size: 3rem;
  line-height: 4.5rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.dd-splash__bubble {
  border-radius: 50%;
  background-color: var(--color-cta);
  color: #fff;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.dd-splash__bubble__details {
  font-weight: 500;
  font-size: 1.3rem;
}
.dd-splash__bubble__price {
  font-weight: 700;
  padding: 10px 0;
  font-size: 2.5rem;
}

.dd-prices .col-12:nth-of-type(2n) .dd-prices__element__title {
  background-color: var(--color-secondary);
}
.dd-prices .col-12:nth-of-type(2n) .dd-prices__element__title:after {
  border-color: var(--color-secondary) transparent transparent transparent;
}
.dd-prices .col-12:nth-of-type(3n) .dd-prices__element__title {
  background-color: var(--color-tertiary);
}
.dd-prices .col-12:nth-of-type(3n) .dd-prices__element__title:after {
  border-color: var(--color-tertiary) transparent transparent transparent;
}
.dd-prices__element {
  background-color: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dd-prices__element__title {
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--color-primary);
  color: #fff;
  position: relative;
}
.dd-prices__element__title:after {
  border-color: var(--color-primary) transparent transparent transparent;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  bottom: -20px;
  content: "";
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}
.dd-prices__element__details {
  font-size: 1rem;
  font-weight: 700;
  flex-grow: 1;
}
.dd-prices__element__details ul > li {
  padding-bottom: 0.5rem;
}
.dd-prices__element__price {
  text-align: center;
  padding-bottom: 25px;
  font-size: 1.75rem;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dd-prices__element__price__from {
  color: var(--color-font-light);
}
.dd-prices__element__price:before {
  content: "";
  display: block;
  height: 1px;
  background-color: var(--color-light-gray);
  width: 90%;
  margin-bottom: 10px;
}

.dd-contact-section {
  background-color: var(--color-secondary);
  color: #fff;
}

.dd-subpage table, .dd-article table {
  width: 100%;
}
.dd-subpage table thead tr, .dd-article table thead tr {
  border-bottom: 1px solid var(--color-light-gray);
}
.dd-subpage table thead tr th, .dd-article table thead tr th {
  padding: 5px;
  font-weight: 700;
  text-align: left;
}
.dd-subpage table tbody tr:nth-of-type(2n), .dd-article table tbody tr:nth-of-type(2n) {
  background-color: rgba(0, 0, 0, 0.03);
}
.dd-subpage table tbody tr td, .dd-article table tbody tr td {
  padding: 5px;
}

.dd-header {
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 480px) {
  .dd-header img {
    width: 40%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.dd-header img {
  width: 150px;
  height: auto;
}
.dd-header__navigation__toggle {
  margin-left: -15px;
  margin-right: -15px;
  background-color: var(--color-primary);
  height: 100%;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dd-header__navigation__toggle:hover, .dd-header__navigation__toggle:focus {
  background-color: var(--color-secondary);
}
.dd-header__contact {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}
.dd-header__contact__title {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
}
.dd-header__contact__phone {
  padding: 0.25rem 0;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 2px;
}
@media screen and (max-width: 480px) {
  .dd-header__contact__phone {
    font-size: 1rem;
  }
  .dd-header__contact__phone a {
    line-height: 1rem !important;
  }
}
.dd-header__contact__phone a {
  color: #000;
  text-decoration: none;
  line-height: 2rem;
}
.dd-header__contact__phone a:hover, .dd-header__contact__phone a:focus {
  color: var(--color-primary);
}
.dd-header__contact__email {
  font-size: 0.8rem;
  font-weight: 500;
}
.dd-header__contact__email a {
  text-decoration: none;
  color: var(--color-primary);
}
.dd-header__contact__email a:hover, .dd-header__contact__email a:focus {
  text-decoration: underline;
}

.dd-nav {
  display: none;
  background-color: var(--color-primary);
  color: #fff;
  width: 100%;
  position: absolute;
  z-index: 999;
}
.dd-nav--visible {
  display: block;
}
.dd-nav ul.menu {
  margin: 0;
  padding: 0;
}
.dd-nav ul.menu > li {
  list-style-type: none;
}
.dd-nav ul.menu > li a {
  padding: 7px 25px;
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8rem;
  text-decoration: none;
}
.dd-nav ul.menu > li a:hover, .dd-nav ul.menu > li a:focus {
  text-decoration: underline;
  background-color: rgba(255, 255, 255, 0.1);
}

.dd-theme ul {
  list-style-type: disc;
  margin-left: 20px;
}
.dd-theme ul > li {
  line-height: 1.2rem;
}

.dd-perks ul {
  list-style: none;
  margin: 0;
}
.dd-perks ul > li {
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: 500;
}
.dd-perks ul > li:before {
  content: "\f05d";
  font-family: "FontAwesome";
  color: #64c159;
  font-size: 1.2rem;
  margin-right: 25px;
}

.dd-price {
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dd-price--darker .dd-price__header {
  background-color: var(--color-secondary);
}
.dd-price--darker .dd-price__header:after {
  border-top-color: var(--color-secondary);
}
.dd-price--dark .dd-price__header {
  background-color: var(--color-tertiary);
}
.dd-price--dark .dd-price__header:after {
  border-top-color: var(--color-tertiary);
}
.dd-price__header {
  border-radius: 25px 25px 0 0;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 800;
  font-size: 2.2rem;
  text-align: center;
  padding: 22px 0;
  position: relative;
}
.dd-price__header:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #fff;
  border-top-color: var(--color-primary);
  border-width: 15px;
  margin-left: -15px;
}
.dd-price__body {
  background-color: #fff;
  color: var(--color-font-light);
  font-size: 1.1rem;
  padding: 25px 40px 0 40px;
  font-weight: 600;
  flex-grow: 1;
}
.dd-price__footer {
  background-color: #fff;
  border-radius: 0 0 25px 25px;
  font-size: 2.2rem;
  font-weight: 800;
  padding: 25px;
  text-align: center;
}
.dd-price__footer__line {
  background-color: #e4e4e4;
  height: 1px;
  width: 100%;
}

.dd-theme p {
  line-height: 1.25rem;
  margin-bottom: 1rem;
}
.dd-theme p:last-of-type {
  margin-bottom: 0;
}
.dd-theme h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.dd-theme h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.dd-theme h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.dd-theme h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.dd-theme h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}
.dd-theme h6 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.dd-theme strong {
  font-weight: 700;
}
.dd-theme small {
  font-size: 0.8rem;
}

/*# sourceMappingURL=style.css.map */
