@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');


/*----- FONTS -----*/
/*----- COLORS -----*/
/*----- GLOBAL STYLES -----*/
#layout .container {
  width: 1560px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
#layout .flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
#layout .flex-wrapper.flex-column {
  flex-direction: column;
}
#layout .flex-wrapper.h-center {
  justify-content: center;
}
#layout .flex-wrapper.v-center {
  align-items: center;
}
#layout img {
  max-width: 100%;
  height: auto;
}
body *,
#layout * {
  box-sizing: border-box;
}
/*----- TYPO -----*/
#layout {
  font-family: 'Poppins', sans-serif;
}
#content,
#footer {
  font-size: 16px;
  line-height: 1.5;
}
#content .text-center,
#footer .text-center {
  text-align: center;
}
#content .text-right,
#footer .text-right {
  text-align: right;
}
#content h1,
#footer h1,
#content h2,
#footer h2,
#content h3,
#footer h3,
#content h4,
#footer h4 {
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.25;
  color: #000;
  font-weight: bold;
}
#content h2,
#footer h2 {
  font-size: 62px;
  text-transform: uppercase;
}
#content h2 + *,
#footer h2 + * {
  margin-top: 30px;
}
#content h2.subpage-title,
#footer h2.subpage-title {
  color: #0c8548;
}
#content h3,
#footer h3 {
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  color: #0c8548;
}
#content h4,
#footer h4 {
  font-size: 24px;
}
#content a,
#footer a,
#content a:hover,
#footer a:hover {
  text-decoration: none;
  color: #0c8548;
}
#content em,
#footer em {
  font-style: italic;
}
#content hr,
#footer hr {
  position: relative;
  border-top: none;
  height: 2px;
  background: #cecece;
  width: 100%;
  margin: 20px 0;
  display: inline-block;
}
#content hr:before,
#footer hr:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 25%;
  background: #0c8548;
}
#content ul:not(.rslides),
#footer ul:not(.rslides) {
  margin-bottom: 30px;
}
#content ul:not(.rslides) li,
#footer ul:not(.rslides) li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
}
#content ul:not(.rslides) li:before,
#footer ul:not(.rslides) li:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0c8548;
}
/*----- BUTTON -----*/
#layout .button,
footer .button {
  color: #fff;
  background: #0c8548;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 20px 12px 20px;
  margin: 15px 0 15px;
  min-width: 140px;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
#layout .button:hover,
footer .button:hover {
  text-decoration: none;
  background: #fff;
}
/*----- LIST -----*/
#content ul {
  margin-bottom: 30px;
}
#content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
#content ul li:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0c8548;
}
/*----- FORM -----*/
#layout div.alert-error,
#layout div.alert-danger {
  color: #fff;
  border-radius: 0;
  font-weight: bold;
  border: none !important;
  padding-left: 70px;
  background: #B10305;
  background-size: 37px !important;
  margin-bottom: 30px;
}
#layout div.alert-error li,
#layout div.alert-danger li {
  margin-bottom: 5px;
}
#layout form,
#layout .form {
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* Disabled checkbox */
  /* Accessibility */
}
#layout form input,
#layout .form input,
#layout form select,
#layout .form select,
#layout form textarea,
#layout .form textarea,
#layout form .form-control,
#layout .form .form-control {
  width: 100%;
  border: 2px solid #222;
  border-radius: 6px;
  padding: 6px 15px;
  font-size: 14px;
  color: #2b2b2b;
  height: auto;
  transition: all 300ms;
}
#layout form input:focus,
#layout .form input:focus,
#layout form select:focus,
#layout .form select:focus,
#layout form textarea:focus,
#layout .form textarea:focus,
#layout form .form-control:focus,
#layout .form .form-control:focus,
#layout form input:active,
#layout .form input:active,
#layout form select:active,
#layout .form select:active,
#layout form textarea:active,
#layout .form textarea:active,
#layout form .form-control:active,
#layout .form .form-control:active {
  outline: none;
  box-shadow: none;
  border: 2px solid #860044;
}
#layout form [type="checkbox"]:not(:checked),
#layout .form [type="checkbox"]:not(:checked),
#layout form [type="checkbox"]:checked,
#layout .form [type="checkbox"]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
  transition: all .275s;
  width: 0;
}
#layout form [type="checkbox"]:not(:checked) + label,
#layout .form [type="checkbox"]:not(:checked) + label,
#layout form [type="checkbox"]:checked + label,
#layout .form [type="checkbox"]:checked + label {
  position: relative;
  display: inline;
  padding-left: 32px;
  padding-top: 2px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: normal;
}
#layout form [type="checkbox"]:not(:checked) + label:before,
#layout .form [type="checkbox"]:not(:checked) + label:before,
#layout form [type="checkbox"]:checked + label:before,
#layout .form [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #FFF;
  border-radius: 6px;
  border: 2px solid #860044;
  box-shadow: none;
  -webkit-transition: all .275s;
  transition: all .275s;
}
#layout form [type="checkbox"]:checked + label:before,
#layout .form [type="checkbox"]:checked + label:before {
  background: #860044;
}
#layout form [type="checkbox"]:not(:checked) + label:after,
#layout .form [type="checkbox"]:not(:checked) + label:after,
#layout form [type="checkbox"]:checked + label:after,
#layout .form [type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  top: -5px;
  left: 5px;
  width: 24px;
  height: 24px;
  box-shadow: none;
  background: url("/application/themes/ivy/images/icons/icon-checked.png") no-repeat center;
  background-size: contain;
  -webkit-transition: all .2s;
  transition: all .2s;
}
#layout form [type="checkbox"]:not(:checked) + label:after,
#layout .form [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
#layout form [type="checkbox"]:checked + label:after,
#layout .form [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#layout form [type="checkbox"]:disabled:not(:checked) + label:before,
#layout .form [type="checkbox"]:disabled:not(:checked) + label:before,
#layout form [type="checkbox"]:disabled:checked + label:before,
#layout .form [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #da1116;
  background-color: #e9e9e9;
}
#layout form [type="checkbox"]:disabled:checked + label:after,
#layout .form [type="checkbox"]:disabled:checked + label:after {
  color: #777;
}
#layout form [type="checkbox"]:disabled + label,
#layout .form [type="checkbox"]:disabled + label {
  color: #aaa;
}
#layout form ::placeholder,
#layout .form ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1;
  /* Firefox */
}
#layout form :-ms-input-placeholder,
#layout .form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}
#layout form ::-ms-input-placeholder,
#layout .form ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #000;
}
/* IFRAME */
#content iframe {
  max-width: 100%;
  width: 100%;
  height: 690px;
}
/*----- FRAME -----*/
html,
body {
  color: #000;
}
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
body #layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
/*----- HEADER -----*/
/*----- CONTENT -----*/
#content {
  flex: 1 0 auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content.subpage-site {
  align-items: flex-start;
  padding: 0 0;
}
/*----- SECTIONS -----*/
#content section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px 0;
}
#content section .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
/*----- BLOG -----*/
#pulse {
  max-width: 100%;
}
#markcon-blog.browser .blog-items .item h3 {
  font-size: 22px;
}
#markcon-blog.browser .blog-items .item h4.subtitle {
  color: #000;
  font-size: 14px;
  margin-top: -15px;
}
#markcon-blog.browser .blog-items .item .intro * {
  font-size: 14px;
  text-align: justify;
}
#markcon-blog.browser .blog-items .item .index-image {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#markcon-blog.browser .item.details {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
#markcon-blog.browser .item.details .index-image {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#markcon-blog.browser .item.details .index-image img {
  width: 100%;
}
#markcon-blog.browser .item.details h2 {
  color: #0c8548;
  font-size: 42px;
  margin-top: 45px;
}
#markcon-blog.browser .item.details h3.subtitle {
  color: #000;
  font-size: 24px;
  margin-top: -15px;
}
#markcon-blog.browser .item.details .intro {
  text-align: justify;
}
#markcon-blog.browser .item.details .content {
  text-align: justify;
}
#markcon-blog.browser .item.details .content img,
#markcon-blog.browser .item.details .content .content-image {
  margin: 20px auto;
}
#markcon-blog.browser #pager {
  width: 100%;
  max-width: 100%;
  margin: 30px auto;
}
#markcon-blog.browser #pager .pages {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
#markcon-blog.browser #pager .pages > * {
  margin: 10px;
}
#nominees-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 1120px;
  margin: 0 auto;
}
#nominees-wrapper .sites-wrapper {
  width: 100%;
  padding: 0 7px;
  margin-bottom: 20px;
  text-align: center;
}
#nominees-wrapper .sites-wrapper select {
  padding: 5px 10px;
  border: 2px solid #666;
  border-radius: 4px;
  margin: 0 auto;
  min-width: 160px;
}
#nominees-wrapper .sites-wrapper select:active,
#nominees-wrapper .sites-wrapper select:focus {
  border: 2px solid #0c8548;
}
#nominees-wrapper .nominee-item-wrapper {
  width: calc(33% - 30px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 15px 15px;
  background: #efefef;
  font-size: 15px;
}
#nominees-wrapper .nominee-item-wrapper .image-wrapper {
  width: 100%;
  height: 360px;
}
#nominees-wrapper .nominee-item-wrapper .image-wrapper img {
  width: 100%;
}
#nominees-wrapper .nominee-item-wrapper .image-wrapper .image {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#nominees-wrapper .nominee-item-wrapper .info-wrapper {
  padding: 20px 20px 0;
}
#nominees-wrapper .nominee-item-wrapper .info-wrapper .name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}
#nominees-wrapper .nominee-item-wrapper .info-wrapper .title {
  font-size: 18px;
  line-height: 1;
}
#nominees-wrapper .nominee-item-wrapper .info-wrapper .site-title {
  font-style: italic;
}
#nominees-wrapper .nominee-item-wrapper .description {
  width: 100%;
  padding: 0 20px 30px;
}
#nominees-wrapper #pager {
  width: 100%;
  max-width: 100%;
  margin: 30px auto;
}
#nominees-wrapper #pager .pages {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
#nominees-wrapper #pager .pages > * {
  margin: 10px;
}
