@charset "UTF-8";
/**
 * Theme Name:   Samhällsorientering
 * Theme URI:    https://chas.se
 * Description:  Gridbox child theme for integrationscentrum
 * Author:       Nicklas Bryntesson
 * Author URI:   https://chas.se/
 * Template:     gridbox
 * Version:      1.0.0
 * Text Domain:	 gridchild
 */
/* ----------------------------------------------------------------------------
 * Add your Child Theme css styles.
 * ------------------------------------------------------------------------- */
:root {
  --text-color: #222;
  --link-color: royalblue;
  --image-overlay: rgba(0, 0, 0, 0.3);
  --text-decoration-color: var(--text-color);
  --theme-color-light: #faceb9;
  --theme-color-dark: #ff6501;
  --theme-color-dark80: rgba(255, 101, 1, 0.8);
  --theme-color-overlay: rgba(250, 206, 185, 0.4);
  --theme-grey-light: #f5f5f5;
  --theme-grey-medium: #e5e5e5;
  --theme-grey-semi-dark: #9b9b9b;
  --theme-grey-dark: #505050;
  --header-background-color: var(--theme-grey-light);
  --footer-background-color: var(--theme-grey-light);
  --site-info: var(--theme-grey-medium);
  --navi-color: var(--text-color);
  --navi-hover-color: var(--link-color);
  --footer-link-color: var(--link-color);
  --width-wrapper: 100%;
  --content-width: 50rem;
  --feat-image-height: 25rem;
  --card-width: calc(20rem + 2vw);
  --card-gap-width: calc(1.125rem + 1.1vw);
}

.teacher {
  --theme-color-light: #b7e1c8;
  --theme-color-dark: mediumseagreen;
  --theme-color-dark80: rgba(60, 179, 113, 0.8);
  --theme-color-overlay: rgb(166, 223, 166, 0.4);
  --text-decoration-color: var(--theme-color-dark);
}

.administrator {
  --theme-color-light: #b6ccf0;
  --theme-color-dark: royalblue;
  --theme-color-dark80: rgba(65, 105, 225, 0.8);
  --theme-color-overlay: rgba(65, 105, 225, 0.4);
  --text-decoration-color: var(--theme-color-dark);
}

/*
// Set parent user colors
.parent {
  --theme-color-light: #b6ccf0;
  --theme-color-dark: royalblue;
  --theme-color-overlay: rgba(65, 105, 225, 0.4);
  --text-decoration-color: var(--theme-color-dark);
}
*/
.developer {
  --theme-color-light: yellow;
  --theme-color-dark: gold;
  --theme-color-dark80: rgba(255, 215, 0, 0.8);
  --theme-color-overlay: rgba(255, 215, 0, 0.4);
  --text-decoration-color: var(--theme-color-dark);
}

.container {
  max-width: var(--width-wrapper);
}

.site-header {
  background-color: var(--header-background-color);
}

.site-header .header-sub {
  background: var(--theme-color-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem var(--card-gap-width);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-header .header-sub__site-logo {
  display: block;
  width: 100%;
  max-width: 250px;
  margin-right: 0 1.2em;
}

.site-header .header-sub__site-logo svg {
  width: 250px;
  height: auto;
}

.site-header .header-sub__breadcrumbs {
  padding-right: 1.2rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

/* Small Header */
.sticky-header.small-header .site-header .site-branding,
.sticky-header.small-header .primary-navigation,
.sticky-header.small-header .primary-menu-toggle {
  margin-top: 0;
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sticky-header.small-header .site-header .header-sub {
  display: none;
}

.header-main .social-navigation {
  display: none;
}

.main-navigation a {
  word-break: break-all;
}

@media only screen and (max-width: 60em) {
  .header-alt .header-sub {
    background: #fff;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header-alt .header-sub .header-sub__site-logo {
    display: none;
  }
  .header-alt .home-icon {
    display: none;
  }
}

@media only screen and (min-width: 60em) {
  .header-main .primary-navigation {
    display: block;
    margin: 0;
  }
  .header-main .header-main__site-logo {
    display: none;
  }
  .header-main .social-navigation {
    display: block;
    margin-left: auto;
  }
  .main-navigation ul li:hover > ul,
  .main-navigation ul li.focus > ul {
    left: 0;
    right: auto;
  }
  .main-navigation ul ul li a {
    width: 20rem;
  }
}

.home-icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding-left: 0;
  padding-right: 0;
  margin-top: 3px;
}

.home-icon a {
  padding: 0 !important;
}

.home-icon a .home-icon-default {
  margin-top: 4px;
  height: 1.75rem;
  width: auto;
}

.home-icon a .home-icon-default .home-icon-background {
  fill: var(--theme-color-dark);
}

.main-navigation-menu > .menu-item-login > a::before {
  content: "";
  display: block;
  text-decoration: inherit;
  background: url(assets/icons//signed_in.svg);
  height: 13px;
  width: 12px;
  background-repeat: no-repeat;
  float: left;
  margin-top: 3px;
  margin-right: 5px;
}

.main-navigation-menu > .menu-item-logout > a::before {
  content: "";
  display: block;
  text-decoration: inherit;
  background: url(assets/icons/signed_out.svg);
  height: 13px;
  width: 10px;
  background-repeat: no-repeat;
  float: left;
  margin-top: 2px;
  margin-right: 5px;
}

.menu-item .logged-out-icon,
.menu-item .logged-in-icon {
  margin: 0 0.5rem 0 0;
  display: inline-block;
}

.menu-item .logged-out-icon svg,
.menu-item .logged-in-icon svg {
  display: inline-block;
  height: 0.95rem;
  width: auto;
}

.entry-image-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: white;
  width: 100%;
  margin-bottom: 2rem;
}

.entry-image-header h1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  width: 100%;
  max-width: var(--content-width);
  font-size: clamp(1.5rem, 2.5vw, 4rem);
  margin: 2rem auto;
  word-wrap: break-word;
  z-index: 2;
}

.entry-image-header__feature-image {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  margin: 0;
  max-height: var(--feat-image-height);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.entry-image-header__feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color-overlay);
}

.entry-image-header__feature-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.entry-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: [full-start] minmax(1rem, 1fr) [main-start] minmax(0, var(--content-width)) [main-end] minmax(1rem, 1fr) [full-end];
      grid-template-columns: [full-start] minmax(1rem, 1fr) [main-start] minmax(0, var(--content-width)) [main-end] minmax(1rem, 1fr) [full-end];
}

.entry-header h1 {
  grid-column: main-start / main-end;
  margin-top: 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 4rem);
}

.entry-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: [full-start] minmax(1rem, 1fr) [main-start] minmax(0, var(--content-width)) [main-end] minmax(1rem, 1fr) [full-end];
      grid-template-columns: [full-start] minmax(1rem, 1fr) [main-start] minmax(0, var(--content-width)) [main-end] minmax(1rem, 1fr) [full-end];
}

.entry-content > * {
  grid-column: main-start / main-end;
}

.entry-content .alignwide {
  grid-column: full-start / full-end;
  width: 100%;
  max-width: calc(50% + var(--content-width) / 2);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.entry-content .alignfull {
  padding: 0;
  grid-column: full-start / full-end;
}

.sidebar-left__header {
  padding: 1rem;
}

.sidebar-left__header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.sidebar-left__header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.sidebar-left__courses {
  margin: 0;
  padding: 0 1rem;
  list-style: none;
}

.sidebar-left__courses a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-color);
  word-wrap: break-word;
  border-bottom: 2px solid var(--theme-grey-medium);
}

.sidebar-left__courses .current-page {
  font-weight: bold;
  -webkit-text-decoration-color: var(--text-decoration-color);
          text-decoration-color: var(--text-decoration-color);
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.125rem;
  text-underline-position: under;
}

.sidebar-right {
  padding: 1rem;
}

.sidebar-right__header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.sidebar-right__links {
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.sidebar-right__links li .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.sidebar-right__links li .embed-container iframe,
.sidebar-right__links li .embed-container object,
.sidebar-right__links li .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sidebar-right__links li .ratio-box {
  width: 100%;
  height: 0;
  padding-top: calc(100% * (9 / 16));
  position: relative;
}

.sidebar-right__links li .ratio-box img {
  position: absolute;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.sidebar-right__links figcaption {
  padding: 0.25rem 0;
  text-align: center;
}

.site-footer .widget-area {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(18rem, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 2rem;
}

.site-footer .widget-area .widget p {
  margin-bottom: 1rem;
  line-height: 2;
}

.site-footer .widget-area .widget p a {
  margin-bottom: 1rem !important;
}

.site-footer .widget-area .widget p a:hover {
  color: var(--link-color);
  -webkit-text-decoration-color: var(--link-color);
          text-decoration-color: var(--link-color);
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  text-underline-position: under;
}

.footer-wrap {
  padding-top: 2rem;
}

.site-footer {
  color: black;
  padding-top: 2rem;
}

.site-footer.container {
  padding: 0;
}

.site-footer .site-info {
  background: var(--site-info);
  padding: 1rem var(--card-gap-width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-footer .site-info__logo {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.site-footer .site-info .social-links-menu {
  margin-right: 0;
}

.cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(var(--card-width), 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(var(--card-width), 1fr));
  gap: var(--card-gap-width);
  list-style: none;
  margin: 0 auto;
  padding: var(--card-gap-width);
}

.card-list-item .card-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  overflow: hidden;
  position: relative;
}

.card-list-item .card-link__thumbnail {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  margin: 0;
  z-index: 1;
}

.card-list-item .card-link__ratio-box {
  width: 100%;
  height: 0;
  padding-top: calc(100% * (9 / 16));
  position: relative;
}

.card-list-item .card-link__ratio-box img {
  position: absolute;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.card-list-item .card-link__ratio-box::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color-overlay);
  opacity: 0;
}

.card-list-item .card-link__title {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  width: 100%;
  margin: 0;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-weight: 400;
  font-size: 1.25rem;
  text-align: center;
  word-break: break-all;
  overflow: hidden;
  z-index: 3;
}

.card-list-item .card-link .card-link__lock {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  height: 5rem;
  width: 5rem;
  z-index: 3;
  background: var(--theme-color-dark80);
  padding: 1rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.card-list-item .card-link .card-link__lock svg {
  fill: white;
  display: block;
  height: 100%;
  width: auto;
}

.card-list-item:hover .card-link__ratio-box img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.card-list-item:hover .card-link__ratio-box::after {
  opacity: 1;
}

.card-item:focus-within {
  outline: 0.25rem solid var(--theme-color-dark) !important;
}

.card-list-item.not-avalible {
  pointer-events: none;
}

.card-list-item.not-avalible .card-link__ratio-box img {
  -webkit-filter: grayscale(70%);
          filter: grayscale(70%);
  opacity: 0.65;
}

.card-list-item.not-avalible .card-link__ratio-box .alert {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: large;
}

.card-list-item.not-avalible .card-link__title {
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.5);
}

.card-list-item.restricted {
  pointer-events: none;
}

.card-list-item.restricted .card-link__ratio-box img {
  -webkit-filter: grayscale(85%);
          filter: grayscale(85%);
  opacity: 0.5;
}

.card-list-item.restricted .card-link__ratio-box img::after {
  opacity: 1;
}

.card-list-item.restricted .card-link__ratio-box .alert {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: large;
}

.card-list-item.restricted .card-link__title {
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.5);
}

/* Social nav */
.social-navigation {
  font-size: 16px;
  font-size: 1rem;
}

.social-navigation ul {
  list-style: none;
  margin: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-navigation li {
  display: inline;
}

.social-navigation a {
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #fff;
  background-color: #767676;
  margin-left: 0.75rem;
  width: 35px;
  height: 35px;
  border-radius: 35px;
}

.social-navigation a:hover, .social-navigation a:focus {
  background: var(--theme-color-dark);
}

.social-navigation .icon {
  fill: white;
  height: 1rem;
  width: 1rem;
  top: 16px;
  vertical-align: top;
}

.teacher-admin {
  background: var(--footer-background-color);
  padding: 1rem;
  border-radius: 0.25rem;
  -webkit-margin-before: 1.125rem;
          margin-block-start: 1.125rem;
  -webkit-margin-after: 2.125rem;
          margin-block-end: 2.125rem;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--content-width);
}

.teacher-admin .documents {
  list-style: none;
  padding: 0;
}

.teacher-admin .documents__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  margin-bottom: 1rem;
}

.teacher-admin .documents__file a {
  font-size: 1.35rem;
  line-height: 2;
  display: inline-block;
  color: var(--text-color);
}

.teacher-admin .documents__file a:hover {
  color: var(--link-color);
  -webkit-text-decoration-color: var(--link-color);
          text-decoration-color: var(--link-color);
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.125rem;
  text-underline-position: under;
}

.teacher-admin .documents__file svg {
  width: 40px;
  height: auto;
  margin-right: 1rem;
}

/*
* Reset parent theme styles
* In theese pages and templates:
*/
.frontpage .container,
.post-type-archive-cpt_lectures .container,
.post-type-archive-cpt_distance_lessons .container,
.post-type-archive-cpt_so_lessons .container,
.tax-txn_courses .container,
.tax-txn_distance_themes .container,
.tax-txn_themes .container,
.tax-txn_so_themes .container {
  max-width: none;
}

.frontpage .site-content,
.post-type-archive-cpt_lectures .site-content,
.post-type-archive-cpt_distance_lessons .site-content,
.post-type-archive-cpt_so_lessons .site-content,
.tax-txn_courses .site-content,
.tax-txn_distance_themes .site-content,
.tax-txn_themes .site-content,
.tax-txn_so_themes .site-content {
  padding: 0;
  width: 100%;
  margin: 0;
}

.frontpage .site-content .content-area,
.post-type-archive-cpt_lectures .site-content .content-area,
.post-type-archive-cpt_distance_lessons .site-content .content-area,
.post-type-archive-cpt_so_lessons .site-content .content-area,
.tax-txn_courses .site-content .content-area,
.tax-txn_distance_themes .site-content .content-area,
.tax-txn_themes .site-content .content-area,
.tax-txn_so_themes .site-content .content-area {
  min-height: 50vh;
}

.frontpage .page-header,
.post-type-archive-cpt_lectures .page-header,
.post-type-archive-cpt_distance_lessons .page-header,
.post-type-archive-cpt_so_lessons .page-header,
.tax-txn_courses .page-header,
.tax-txn_distance_themes .page-header,
.tax-txn_themes .page-header,
.tax-txn_so_themes .page-header {
  background: var(--header-background-color);
  padding: 2rem var(--card-gap-width);
  margin: 0;
}

.single-cpt_lectures .site-content,
.single-cpt_so_lessons .site-content,
.single-cpt_distance_lessons .site-content {
  padding: 0;
  margin: 1.25rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.single-cpt_lectures .site-content .lecture-main,
.single-cpt_so_lessons .site-content .lecture-main,
.single-cpt_distance_lessons .site-content .lecture-main {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.single-cpt_lectures .site-content .sidebar-right,
.single-cpt_so_lessons .site-content .sidebar-right,
.single-cpt_distance_lessons .site-content .sidebar-right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.single-cpt_lectures .site-content .sidebar-left,
.single-cpt_so_lessons .site-content .sidebar-left,
.single-cpt_distance_lessons .site-content .sidebar-left {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media only screen and (min-width: 70em) {
  .single-cpt_lectures .site-content,
  .single-cpt_so_lessons .site-content,
  .single-cpt_distance_lessons .site-content {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 18em 1fr 18em;
        grid-template-columns: 18em 1fr 18em;
        grid-template-areas: "nav main sidebar";
    margin: 0;
    padding: 0;
  }
  .single-cpt_lectures .lecture-main,
  .single-cpt_so_lessons .lecture-main,
  .single-cpt_distance_lessons .lecture-main {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: main;
  }
  .single-cpt_lectures .sidebar-right,
  .single-cpt_so_lessons .sidebar-right,
  .single-cpt_distance_lessons .sidebar-right {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: sidebar;
  }
  .single-cpt_lectures .sidebar-left,
  .single-cpt_so_lessons .sidebar-left,
  .single-cpt_distance_lessons .sidebar-left {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: nav;
  }
}

#note {
  width: 100%;
  border: 1px solid #000000;
  border-top: 0;
  padding: 10px;
  background: #fccb48;
  font-size: 1.2rem;
}

#note::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffe9af;
}

#note::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffe9af;
}

#note:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffe9af;
}

#note:-moz-placeholder {
  /* Firefox 18- */
  color: #ffe9af;
}

.comment-list {
  border: 1px solid #000000;
  padding: 10px;
  min-height: 200px;
  border-bottom: 0;
  margin-bottom: -30px;
  font-size: 1.25rem;
}

.search-form-top input {
  height: 30px;
  margin-top: 3px;
  margin-right: 2px;
  width: 100%;
  max-width: 343px;
  border: 1px solid #d1d9dc;
}

.courses-centered-text {
  text-align: center;
  padding: 3rem;
}

.comment {
  clear: bloth;
  overflow: hidden;
  border-bottom: 2px dashed hotpink;
}

.comment-body-lesson {
  float: left;
  width: 90%;
  margin-bottom: 20px;
  line-height: 25px;
}

.comment-body-lesson p {
  margin: 0;
}

.delete-comment {
  float: right;
}

.left-align {
  text-align: left;
}

.logged-in-as {
  display: none;
}

.comment-reply-title {
  display: none;
}
/*# sourceMappingURL=style.css.map */