@font-face {
  font-family: 'Josefin';
  src: url('../fonts/JosefinSans-VariableFont_wght.ttf') format('truetype');
}

*{
    font-family:'Josefin';
}
.ems-text {
    font-size: 20vw; /* Adjust the size as needed */
    width: 100%;
    text-align: center;
    font-weight: bold;
  }
.clock-container {
    position: fixed;
    text-align: center;
    /* border: 1px solid #e3dfdf; */
    border-radius: 50%;
    padding: 30px 16px;
    width: fit-content;
    bottom: 2%;
    right: 1%;
    box-shadow: 0px 0px 9px 0px #55d315;
    z-index: 999;
    background: #fff;
  }

  .clock {
    font-size: 0.8rem;
  }

  .date {
    font-size: 0.7rem;
    color: #666;
  }

    .tf-icons{
        margin-bottom: 6px;
    }
.form-select option{
    padding: 12px !important;
}
select {
    padding: 10px; /* Adjust the padding as needed */
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #787BFF;
    background-color: transparent !important;
}
.comp-logo{
    background: #fff;
    margin-top: -3rem;
    width: fit-content;
    border-radius: 50%;
    padding: 12px 12px;
    box-shadow: 0px 0px 4px 0px #c9c9c9;
}
#editor-container {
  height: 800px;
}
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

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

.close{
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 300;
    border-radius: 50%;
    padding: 0px 9px;
    box-shadow: 0px 0px 16px 0px #00000026;
}
