#modalMessageContainer,
#confirmModalContainer,
#otpModalContainer {
    width: 100%;
    height: 100vh;
    background-color: #56617615;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(.9px);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100;
    padding: 10px;

    & .--modal-error-msg {
        width: 340px;
        display: flex;
        /* flex-direction: column; */
        justify-content: center;
        align-items: end;
        gap: 15px;
        background-color: var(--color-dark-v1);
        border-radius: 10px;
        box-shadow: 0 3px 15px 5px #00000010;
        padding: 15px;

        & span {
            width: 100%;
            display: flex;
            justify-content: flex-start;
            gap: 5px;
            font-size: 20px;
            color: #ff0000;
            font-weight: 500;

            & i {
                font-size: 20px;
                color: #ff0000;
            }
        }

        & button {
            padding: 7px 35px;
            cursor: pointer;
            font-size: 14px;
        }
    }

    & .--modal-scss-msg {
        width: 340px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: end;
        gap: 15px;
        background-color: var(--color-dark-v1);
        border-radius: 10px;
        box-shadow: 0 3px 15px 5px #00000010;
        padding: 15px;

        & span {
            width: 100%;
            display: flex;
            justify-content: flex-start;
            gap: 5px;
            font-size: 20px;
            color: #10b65e;
            font-weight: 500;

            & i {
                font-size: 20px;
                color: #10b65e;
            }
        }

        & button {
            padding: 7px 35px;
            cursor: pointer;
            font-size: 14px;
            color: var(--color-dark-v1);
        }
    }

    & .components-action-modal-container {
        width: 340px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 15px;
        background-color: var(--color-dark-v1);
        border-radius: 10px;
        box-shadow: 0 3px 15px 5px #00000015;
        padding: 15px;

        & .msg-span {
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 20px;
            font-weight: 500;

            & i {
                font-size: 20px;
            }
        }

        & .scss-msg {
            color: #10b65e;

            & i {
                color: #10b65e;
            }
        }

        & .erro-msg {
            color: #e23737;

            & i {

                color: #e23737;
            }
        }

        & .wrng-msg {
            color: #ffa500;

            & i {
                color: #ffa500;
            }
        }

        & .msg-paragh {
            width: 100%;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
        }
    }
}

.auth-input-msg-err {
    font-size: 13px;
    color: #e23737;

    & i {
        font-size: 13px;
        color: #e23737;
    }
}

.loading-icon {
    position: absolute;
    animation: spin 1s linear infinite;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 25px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.components-action-btn-modal-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.components-action-btn-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

.component-smll-btn {
    width: 35px;
    height: 35px;
    background: none;
    border-radius: 50%;
    border: solid 2px #1C1F25;
    cursor: pointer;
}

.component-action-btn {
    min-width: 157.117px;
    min-height: 54px;
    padding: 15px 50px;
    position: relative;
    border-radius: 10px;
    font-size: 16px;
    background: none;
    font-weight: 500;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.btn-style-a {
    background-color: #2a9d7c;
    border: solid 2px #4bbe9a;
}

.btn-style-c {
    border: solid 2px #1C1F25;
}

.action-btn {
    width: 150px;
    height: 45px;
    border-radius: 10px;
    font-size: 14px;
    background: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.update-btn,
.edit-btn,
.close-btn,
.add-btn {
    background-color: var(--action-btn-color-v1);
}

.cancel-btn {
    border: solid 2px var(--color-dark-v2);
}

.delete-btn {
    background-color: var(--action-btn-color-v2);
}

/* new 08 may 2025 */
.tooltip {
    position: relative;
    display: inline-block;

    & .tooltiptext {
        display: ruby;
        visibility: hidden;
        background-color: #141414;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        z-index: 10;
        left: 115%;
        font-size: 12px;
        border: solid 2px #1A1D23;
    }

    &:hover .tooltiptext {
        visibility: visible;
    }
}

.components-otp-modal-contianer {
    width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 15px;
    background-color: var(--color-dark-v1);
    border-radius: 10px;
    box-shadow: 0 3px 15px 5px #00000015;
    padding: 15px;

    & .close-otp-modal-btn {
        width: 35px;
        height: 35px;
        border-radius: 50px;
        background-color: var(--color-dark-v2);
        border: none;
        outline: none;
        cursor: pointer;

        &:hover {
            & i {
                color: #e23737;
            }
        }
    }

    & .header {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;

        & h6 {
            font-size: 18px;
            font-weight: 600;
        }

        & span {
            font-size: 14px;

            & email {
                color: #51a2ff;
            }
        }
    }

    & .err-otp-code {
        padding: 0 15px;
        text-align: center;
        color: #e23737;

        & i {

            color: #e23737;
        }
    }

    & .otp-input-container {
        width: 100%;

        & .input-digits {
            text-align: center;
            width: 100%;
            height: 50px;
            background-color: var(--color-dark-v2);
            padding: 10px;
            border-radius: 10px;
            border: 2px solid var(--color-dark-v2);
            outline: none;
            text-align: center;

            &:focus {
                border: 2px solid var(--color-light-v3);
            }
        }
    }

    & .action-button-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;

        & .action-btn {
            width: 100%;
        }
    }
}

.components-snippet-code-container {
    width: 100%;
    background-color: #14171B;
    border: solid 2px #1A1D23;
    border-radius: 10px;

   & .snippet-code-header-container {
      width: 100%;
      height: 40px;
      background-color: #1A1D23;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 73.2px;

      & .language-span {
         padding-left: 10px;
      }

      & .snippet-code-header-menu-container {
         display: flex;
         flex-direction: row;

            & a,
            button {
               padding: 10px 15px;
               border: none;
               background: none;
               font-size: 13px;
               cursor: pointer;

               & i {
                  font-size: 13px;
               }

               &:hover {
                    color: #4BBE9A;

                  & i {
                     color: #4BBE9A;
                  }
            }
         }
      }
   }
}

.components-social-links-container {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;

    & a {
        padding: 10px 15px;
        color: #D9D9D9;
        border: solid 2px #1A1D23;
        border-radius: 5px;

        &:hover {
            color: #4bbe9a;
            transition: .3s ease;
            text-decoration: underline;
        }
    }
}

.component-hr-lnk-bsc{
   &:hover {
      transition: .3s ease;
      color: var(--color-hvr-link-v1);
      text-decoration: underline;

      & i {
         transition: .3s ease;
         color: var(--color-hvr-link-v1);
      }
   }
}

.component-hr-lnk {
   &:hover {
      transition: .3s ease;
      color: var(--color-hvr-link-v1);
      text-decoration: underline;

      & i {
         transition: .3s ease;
         color: var(--color-hvr-link-v1);
      }
   }
}

.component-nav-bar-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #131519;
    border: 2px solid #1A1D23;
    border-radius: 50px;

   & img {
      width: 100%;
      border-radius: 50px;
   }

   & i {
      color: #D9D9D9;
      font-size: 20px;
   }
}

@media only screen and (max-width: 750px) {

   .component-nav-bar-icon {
      height: 45px;
      background-color: #131519;
      border: none;
      border-radius: unset;

      & img {
         width: 35px;
         height: 35px;
      }
   }

   .tooltip {
      position: relative;

      & .tooltiptext {
         bottom: 115%;
         left: unset;
      }
   }
}

& #adContainer {
    min-width: 180px;
    height: 100vh;
    border-left: solid 2px #1C1F25;
}

.component-404-not-found-container-v2{
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;

   & h1 {
      font-size: 50px;
      font-weight: 600;
   }
   
   & h2 {
      font-size: 20px;
      font-weight: 500;
   }
   
   & h3 {
      font-size: 15px;
      opacity: .7;
   }
   
   & a {
      text-decoration: underline;
   }
}

& #componentGridItemsContainer {
   width: 100%;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;

   & .component-items-container {
      width: 340px;
      min-width: 340px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      overflow: hidden;
      padding: 10px;
      background-color: #131519;
      border: solid 1px #222730;
      border-radius: 10px;
      
      & .component-item-header-container {
         width: 100%;
         display: flex;
         justify-content: space-between;
         align-items: center;
         border-bottom: solid 1px #222730;
         padding-bottom: 10px;

         & .components-item-name {
            font-size: 15px;
         }

         & .components-item-download-btn {
            width: 43px;
            height: 33px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #2a9d7c;
            border: solid 2px #4bbe9a;
            border-radius: 50px;
            cursor: pointer;

            & i {
               font-size: 20px;
            }
         }
         
         & .btn-disabled-to-download{
            cursor: not-allowed;
         }
      }

      & .components-item-img {
         width: 320px;
         height: 320px;
         background-color: #131519;
         border: solid 1px #131519;
      }
   }
}

/* @property Is part of support-box-component*/
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

& #supportBoxComponentCenter{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 50px;

   & .support-box-component{
       max-width: 300px !important;
       padding: 15px !important;
       border: solid 2px #1a1d23 !important;
       border-radius: 5px;
   }
}

& .support-box-component{
   width: 100%;
   max-width: 280px;
   min-width: 278.4px;
   height: 100px;
   border-top: solid 2px #1a1d23;
   background-color: #131519;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   gap: 10px;
   overflow: hidden;
   z-index: 100;
   padding: 5px;

   & span{
      font-weight: 400;
      font-size: 13px;
   }

   & a{
      width: 100%;
      height: 45px;
      border-radius: 3.7px;
      background-color: #15171B;
      color: #f8f8f9;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
   
      &::after,
      &::before {
         content: '';
         position: absolute;
         width: 100%;
         height: 100%;
         border-radius: 5px;
         background-image: conic-gradient(
             from var(--angle),
             #00eaff,
             #0099ff,
             #7b2cff,
             #ff00aa,
             #00eaff
         );
         top: 50%;
         left: 50%;
         translate: -50% -50%;
         padding: 1.3px 2px;
         animation: 3s spin linear infinite;
         z-index: -1;
      }
   
      &::before {
         filter: blur(1.5rem);
         opacity: 0.5;
      }
   }
}

@keyframes spin {
   from {
      --angle: 0deg;
   }

   to {
      --angle: 360deg;
   }
}