#mm-room-map-fields label {
  font-weight: bold;
}

.csm-image-upload-wrapper {
  margin-top: 10px;
}

.csm-image-wrapper {
  margin-top: 15px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.csm-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.csm-image-wrapper .csm-img-plus {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #3140a0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  cursor: pointer;
}
.csm-image-wrapper .csm-img-plus:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px #3140a0 solid;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.csm-image-wrapper .csm-img-plus.selected {
  background-color: #ffffff;
}
.csm-image-wrapper .csm-img-plus.selected:before, .csm-image-wrapper .csm-img-plus.selected:after {
  background-color: #e85d1a;
}

.csm-image-wrapper-front {
  max-width: 500px;
  margin-top: 10%;
}
@media (max-width : 1024px) {
  .csm-image-wrapper img {
    margin-top: 25%;
  }
}
@media (max-width : 768px) {
  .csm-image-wrapper img {
    margin-top: 5%;
  }
}

.csm-field-subtitle {
  margin-top: 15px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 25px;
}
.csm-field-subtitle input[type="text"] {
  display: block;
  width: 100%;
  margin-top: 10px;
}

.csm-field-pluses {
  margin-top: 10px;
}

.csm-field-plus {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
}
.csm-field-plus label {
  margin-left: 50px;
}
.csm-field-plus select {
  width: 325px;
  margin-left: 10px;
}
.csm-field-plus.selected {
  background-color: #f1f1f1;
}

#csm-field-plus-template {
  display: none;
}


.csm-popup {
  background: #3140a0;
  width: calc(117%);
  display: none;
  padding: 40px;
  position: absolute;
  left: 0;
  top: 0;
  animation: fade 0.5s ease-out;
  transition: all 0.5 ease-out;
}
@media (max-width : 1280px) {
  .csm-popup {
    width: calc(115%);
  }
}
@media (max-width : 1024px) {
  .csm-popup {
    width: calc(115%);
  }
}
@media (max-width : 768px) {
  .csm-popup {
    width: calc(100%);
  }
}
.csm-popup::before {
  content:'+';
  color: #fff;
  font-size: 30px;
  transform: rotate(45deg);
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.csm-popup.active {
  display:block;
}
.csmp-inside {
  display: flex;
  flex-wrap: wrap;
}
.csmp-inside .col {
  width: 50%;
  padding-right: 30px;
  color: #fff;
  word-break: break-all;
  hyphens: auto;
}
.csmp-inside p {
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.csmp-inside a {
  color: #fff;
  word-break: break-all;
  hyphens: auto;
}
.csmp-inside div:first-child {
  padding-right: 40px;
}
@media (max-width : 1280px) {
  .csmp-inside .col {
    width: 100%;
  }
  .csmp-inside div:first-child {
    padding-right: 0;
  }
}
.triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 0 25px;
  border-color: #3140a0 transparent transparent transparent;
  animation: fade 0.5s ease-out;
  transition: all 0.5 ease-out;
}

/* MODIFICATIONS ==============================*/

.modif_float_content {
  display: flex;
  flex-direction: column;
}

.modif_text_left  {
  width: 120%;
  max-width: none;
}
@media (max-width : 480px) {
  .modif_text_left  {
    width: 100%;
  }
}
.modif_text_left:first-child {
  margin-right: 25px;
}


.modif_text_left h2 {
  border-bottom: 1px lightgrey solid;
  padding-bottom: 20px;
  font-size: 32px;
  font-weight: 200;
  text-transform: uppercase;
}
@media (min-width : 1024px) {
  .site-main {
    margin: 15px;
  }
  .csmp-inside a:hover {
    text-decoration: underline;
  }
}
@media (min-width : 768px) {
  .modif_float_content {
    flex-direction: row;
  }
  .site-main {
    margin: 15px;
  }
  .modif_text_left  {
    /* margin-right: 0 !important; */
  }
}


@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}