#container_decoration {
    width: 100%;
    height: 500px;
    border: 2px solid #EFF0F4;
    position: relative;
    overflow: hidden;
    background: 2px 2px/10px 10px #EFF0F4 radial-gradient(#d7e0ea 18.75%,transparent 0);
}

.draggable {
    position: absolute;
    cursor: move;
}

.resize-handle {
    width: 10px;
    height: 10px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: se-resize;
}

#menu-item-decoration {
    display: none;
    position: absolute;
    width: 190px;
    background-color: white;
    box-shadow: 0 0 5px grey;
    border-radius: 3px;
    font-size: 0.9rem;
}

#menu-item-decoration button {
    width: 100%;
    background-color: white;
    border: none;
    margin: 0;
    padding: 10px;
    text-align: left;
}

#menu-item-decoration button:hover {
    background-color: lightgray;
}

.add-text {
  width: 100%;
  color: #484848;
  background-color: #eeecec;
  margin-bottom: 10px;
  border-radius: 5px;
  text-indent: 10px;
  border: 1px solid #b9b7b7;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  height: 34px;
  line-height: 34px;
}
#heading-text {
  font-size: 24px;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
}
#subheading-text {
  font-size: 18px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
}
#body-text {
  font-size: 15px;
  font-weight: 400;
  height: 34px;
  line-height: 34px;
}
#heading-text, #subheading-text, #body-text, .add-text {
  cursor: grab !important;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.canva-tool-title p{
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight:bold;
}

.grid-item-shape {
  background-color: #eeecec;
  border-radius: 5px;
  min-height: 55px;
  width: 100%;
  text-align: center;
  position: relative;
  border: 1px solid #b9b7b7;
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  transition: border 0.2s ease-in-out;
  height: 100%;
}

.object-svg, .object-img, .image-grid-item img, .video-grid-item img {
  object-fit: cover;
  width: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: grab;
}

.object-svg, .object-img {
  width: 100%;
  height: auto;
  margin: 0;
  max-width: 300px;
  max-height: 300px;
}

.property-title {  
  font-weight: bold;
  font-size: 1rem;
  margin: 0 0 15px 0;
  color: var(--color-5);
}
.property-separator{
     border-top: 2px dashed #E7E9EB;
}
.simple-separator{
    margin: 0px;
    border-top: 1px solid #E7E9EB;
}