html {
  scroll-behavior: smooth;
}
.price-box-color{
	background-color:#335eea;
}
.portal {
    border: none;
    border-radius: 10px;
    transition: all 1s;
    cursor: pointer;
    box-shadow: 1px 2px 3px 0px #777777;
}

.portal:hover {
    -webkit-box-shadow: 3px 5px 17px -4px #777777;
    box-shadow: 3px 5px 17px -4px #777777
}

.portal-missing {
    border: none;
    border-radius: 10px;
    transition: all 1s;
    cursor: pointer;
    box-shadow: 1px 2px 3px 0px #777777;
}

.upload button {
    border-radius: 20px;
    background-color: #eee;
    color: #000;
    border-color: #eee;
    font-size: 13px
}
.modal {
    --bs-modal-header-border-width: 0.0625rem;;
}
.profileImage {
    background: #512DA8!important;
    color: #fff;
    text-align: center;
}
.wh35{
    width: 35px;
    height: 35px;
}
.wh50{
    width: 50px;
    height: 50px;
}
.upload-button{
    background-color: #e9ecef;
    color: #495057;
}
.custom-file-button input[type=file] {
  margin-left: -2px !important;
}

.custom-file-button input[type=file]::-webkit-file-upload-button {
  display: none;
}

.custom-file-button input[type=file]::file-selector-button {
  display: none;
}

.custom-file-button:hover label {
  background-color: #dde0e3;
  cursor: pointer;
}

.custom-disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed; 
}
.beta{
    border-color: rgba(255,255,255,0) #21325b rgba(255,255,255,0) rgba(255,255,255,0);
    border-style: solid;
    border-width: 0px 63px 60px 0px;
    float: right;
    height: 0px;
    width: 0px;
    right: 0px;
    top: 0px;
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    z-index: 1;
    position: absolute;
    border-top-right-radius: 0.5rem
}
.beta-text{
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    right: -34px;
    top: 2px;
    white-space: nowrap;
    -ms-transform: rotate(30deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(41deg);
}
.dashboard-pinned-top-end{
    position: absolute;
    top: -0.1rem;
    right: 0rem;
}
.video-player-icon {
    color: white;
    background-color: #ff0000b8;
}
.toast {
    z-index: 1000;
}
.footer-support-icon {
  background-image: url('https://gsttool.in/assets/img/customer-service-support.svg');
  background-size: cover; /* Cover, contain, or specific dimensions */
  width: 50px; /* Set your width */
  height: 50px; /* Set your height */
  z-index: 99;
}
.drop-zone {
    border: 2px dashed #007bff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: #007bff;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.drop-zone.over {
    background-color: #e9ecef;
}
.drop-zone img {
    max-height: 50px;
    display: none;
}
.drop-zone .file-details {
    display: none;
    text-align: left;
    margin-top: 10px;
}
.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#process-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
#process-icon {
    display: inline-block;
    margin-bottom: 10px;
}