:root {
    --fpd-primary-color: #016749 !important;
}

* {
    box-sizing: border-box;
    
  }

  html{
    /* background-color: #016749; */
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }

body {
    font-size: 12px;
    font-family: Helvetica;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: center;
    /* max-width: 100%; */
    /* width: 500px; */
    overflow-x: hidden;

}

body>.container {
    max-width: 1200px;
    /* margin: auto; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: #016749; */
    padding: 80px 10px;
}

.demo-btn {
    border-radius: 4px;
    background: #EBEBEB;
    color: #989898;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    display: block;
    cursor: pointer;
}

.demo-btn:hover {
    opacity: 0.8;
}


#header-img {
    margin: 3em auto;
    justify-self: center;
}

.description {
    /* font-family: Helvetica; */
    margin: 0;
    padding: 0;
    border-top: 2px solid #016749;
    border-bottom: 2px solid #016749;
    display: flex;
    width: 100%;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    background: #016749;
    color: #fff;
    padding: 2em 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

}

.description>p,
.description>ol {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.5;
}

#design-add {
    /* text-align: center; */
    margin: 1em 0;
    justify-self: center;
    padding: 20px;
    border-radius: 20px;
    background: #016749;
    color: #fff;
    font-size: 1.6rem;
    transition: all .5s;
}

#design-add:hover {
    cursor: pointer;
    transform: scale(1.1);
    border-radius: 0;
}

.your-designs>h3 {
    font-size: 2rem;
}

#design-holder {
    /* border: 5px double #016749; */
    /* min-width: 100px;
    min-height: 100px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2em;
}

.single-design {
    position: relative;
}

.single-design>span {
    background-color: #016749;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    padding: 10px;
    position: absolute;
    right: 20%;
    top: 3%;
    transition: all .5s;
}

.single-design>span:hover {
    cursor: pointer;
    transform: scale(1.1);
    border-radius: 0;
}

.loading {
    height: 100px;
    width: 100px;
    border: 10px solid #ccc;
    border-right-color: #016749;
    border-radius: 50%;
    animation: rotate 1.5s linear infinite;
    margin-top: 50px;
    box-shadow: none;
  }

  .load-in{
    display: none;
  }

  dialog{
    border-radius: 20px;
    padding: 2em;
    font-size: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
  }

  dialog span{
    border: 2px solid black;
    padding: 10px;
    border-radius: 20px;
    transition: all .3s;
    width: 100%;
  }

  dialog  span:hover{
    color: #FFF;
    background-color: #016749;
    cursor: pointer;
  }

  @keyframes rotate{
    100% {
      transform: rotate(360deg);
    }
  }

@media(max-width:726px){
    .description{
        padding: 1em;
    }

    .your-designs{
        text-align: center;
    }

    img{
        width: 90%;
    }

    body>.container {
        max-width: 100%;
        padding: none;
        /* max-height: 900px; */
    }
}