.cta {
    color: #D2CEFF !important;
    background: #2A1FB3 !important;
    margin: 0 10px;
    padding: 10px 45px;
    font-weight: 500;
    font-size: 14px !important;
    background-color: rgba(139, 60, 217, 0.1);
    border-radius: 5px;
}
.ctahover{
    margin: 0 10px;
    padding: 10px 45px;
    background: #D2CEFF !important;
    font-weight: 500;
    font-size: 14px !important;
    background-color: rgba(139, 60, 217, 0.1);
    border-radius: 5px;
    color: #2A1FB3 !important;
}
.ctahover:hover{
    color: #D2CEFF !important;
    background: #2A1FB3 !important;
}
.cursor{
    cursor: pointer;
}
.inputbox{
    border: none;
    border-radius: 50px;
    padding: 7px;
    background: rgb(234,238,248,0.6);
    text-align: center;
}
.inputbox:hover{
    background-color: rgb(234,238,248);
}
.inputbox:focus{
    border: 1px solid #2A1FB3 ;
    background: #E4E2FF;
    outline: none;
}
.textareabox{
    border: none;
    border-radius: 10px;
    padding: 7px;
    background: rgb(234,238,248,0.6);
    text-align: center;
}
.textareabox:hover{
    background-color: rgb(234,238,248);
}
.textareabox:focus{
    border: 1px solid #2A1FB3 ;
    background: #E4E2FF;
    outline: none;
}
.inputboxdisable{
    border: 1px solid #2A1FB3 ;
    background: #E4E2FF;
    outline: none;
    border-radius: 50px;
    padding: 7px;
    text-align: center;
    cursor: not-allowed;
    opacity: 0.3;
}
.textareaboxdisable{
    border: 1px solid #2A1FB3 ;
    background: #E4E2FF;
    outline: none;
    border-radius: 10px;
    padding: 7px;
    text-align: center;
    cursor: not-allowed;
    opacity: 0.3;
}
.inputboxerror{
    border-radius: 50px;
    padding: 7px;
    background: rgb(255, 0, 0, 0.16) ;
    text-align: center;
    color:#FF0000;
    border: 1px solid #FF0000;
    outline:none;
    font-weight: bold;
}
.downloadbar{
    width: 100%;
    height: 15px;
    background-color: #f0f0f0;
    border-radius: 50px;
    overflow: hidden;
}
.progressbar{
    background: #2A1FB3;
    height: 100%;
    width: 70%;
    border-radius: 50px;
    transition: width 0.3s ease-in ;
  
}
.selectedFont{
    background: #D2CEFF;
    border-radius: 10px;
    color:#2A1FB3
}
.selectedFont:hover{
    background: #D2CEFF;
    border-radius: 50px;
}
.fontlisthover {
    border-radius: .573vw;
}
.fontlisthover p {
    width: 11.979vw;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
    margin: 0 0 .469vw;
    font-size: .625vw;
    line-height: .729vw;
    letter-spacing: .008vw;
}
.fontlisthover div {
    font-size: .99vw;
    line-height: 1.042vw;
}
.fontlisthover:hover{
    background: #EFF1F8;
}
.range::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #ddd; /* Background color of the track */
    border-radius: 5px;
  }
  
  .range::-webkit-slider-thumb {
    -webkit-appearance: none; /* Remove default styling */
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #af0c76; /* Custom color for the thumb */
    cursor: pointer;
  }
  
  .range::-webkit-slider-thumb:hover {
    background: #45a049; /* Custom color on hover */
  }
  
  