* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
  }
  
  
  body {
    padding: 0;
    margin: 0;
    background-color: #f8f8fb;
  
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  ul,
  li,
  p {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  @media screen and (max-width:1399.98px) {
    .logo-section {
      transform: scale(.8)
    }
  
    .mt-3 {
      margin-top: 6px !important;
    }
  
  }
  
  .upload-image {
    padding: 0 7% 0 7%;
    /* max-width: 90%;
      margin: 0px auto ;
      */
    height: 100vh;
  
    /* background-color: rgba(215, 234, 247, 0.368); */
    /* border-radius: 30px; */
    /* overflow: hidden; */
    padding-bottom: 40px;
    padding-top: 40px;
  }
  
  .headerDiv {
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* height: rem; */
  }
  
  .mainDiv {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 10rem;
  
  }
  
  .upload-image .logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .logo-section img.logo {
    width: 100%;
    max-width: 220px;
    height: auto;
  }
  
  .upload-image .logo-section::before {
  
    position: absolute;
    content: '';
    width: 33%;
    height: 1.1px;
    background-color: rgb(185, 146, 146);
    bottom: 8%;
    z-index: -99;
    left: 0;
  }
  
  .upload-image .logo-section::after {
    position: absolute;
    content: '';
    width: 33%;
    height: 1.1px;
    background-color: rgb(185, 146, 146);
    bottom: 8%;
    z-index: -99;
    right: 0;
  }
  
  .image-section {
    height: 75px;
    width: 120px;
    background-color: #FFF;
    border-radius: 15px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    color: #00b0f0;
    position: relative;
  }
  
  .image-section img {
    border-radius: 15px;
    height: 65px;
    width: 110px;
  }
  
  .upload-btn,
  .upload-btn:hover {
    border-radius: 25px;
    padding: 5px 25px;
    color: #fff;
    margin-top: 20px;
  }
  
  .image {
    width: 100%;
  }
  
  .remove {
    position: absolute;
    top: -25px;
    right: 0px;
    color: #FF0000;
  }
  
  .add-icon h3 {
    margin-top: 15px;
  }
  .upload-image .logo-section .name-header {
    text-align: center;
    color : rgba(0, 0, 0, 0.798);
    font-size: 20px;
    padding-top: 10px;
    margin-top: 8px;
    font-weight: bolder;
    letter-spacing: 1px;
}

  .link {
    float:right;
    text-decoration: none;
    cursor: pointer;
    color: #FF8C00;
    font-weight: bold;
  }
  
  a.link:hover {
    color: #FF8C00;
  }
  
  .preview-btn { 
     border-radius: 25px;
     padding: 5px 25px; color: #fff;
      margin-top: 20px; 
    }
  .carousel>.carousel-inner>.carousel-item>img 
       {
         width: 100%;
          height: 500px;
         }
  #json {
    background-color: rgb(81, 75, 75);
    height: 398px;
    border-radius: 15px;
    overflow-y: auto;
    position: relative;
    color: #FFF;
    padding-left: 20px;
    padding-top: 20px;
  }
  
  /* .json-card {
    background-color: #fff;
    padding: 20px;
    width: 80%;
    border-radius: 15px;
  } */
  
  .lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  
  }
  
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  .lds-ring-hidden {
    display: none;
  }
  
  #btn:focus+.lds-ring-hidden {
    display: block;
  
  }
  
  
  @media only screen and (max-width: 992px) {
  
    .upload-image .logo-section::before,
    .upload-image .logo-section::after {
      display: none;
    }
  }