@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap"); 
@import url("https://db.onlinewebfonts.com/c/0f4e36d040e4e2610f99e59adc22aa6b?family=National-Regular");
@font-face {
    font-family: metric;
    src: url("./fonts/MetricWeb-Regular.woff");
}
@font-face {
    font-family: metric;
    src: url("./fonts/MetricWeb-Bold.woff");
    font-weight: bold;
}

@keyframes appear {
    0% {
        transform: translateY(100%) rotate(0deg);
        opacity: 0;
    }
    70% {
        transform: translateY(-20%) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-20%) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}
@keyframes ripple-animation {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    2% {
        transform: scale(0);
        opacity: 0.8;
    }

    85% {
        transform: scale(2);
        opacity: 0;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes jump {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
html * { -webkit-text-size-adjust: none; }
#collegeit-container-btn {
    position: fixed;
    top: 84%;
    right: 4%;
    z-index: 9999999;
    opacity: 0;
    animation: appear 800ms ease-in-out 800ms forwards;
}

#collegeit-container-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #3d3d43;
    animation: ripple-animation 2s ease-in-out 1s 3 forwards;
}

#collegeit-container-btn:hover #collegeit-tooltip {
    transform: translateY(0);
    opacity: 1;
}

#collegeit-tooltip {
    box-sizing: border-box;
    transition: 250ms;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    background-color: rgb(69, 101, 220);
    font-family: Outfit;
    margin-bottom: 0.2rem;
    color: white;
    font-size: 1.1rem;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    position: absolute;
    box-shadow: 0 0 2px black;
    top: -50px;
    right: 0px;
    width: 250px;
    line-height: 1.12;
}
#collegeit-tooltip::after {
    content: "";
    position: absolute;
    background-color: rgb(69, 101, 220);
    width: 12px;
    height: 12px;
    bottom: -6px;
    right: 8%;
    transform: rotate(45deg);
    border-top-left-radius: 20px;
}

#collegeit-btn {
    padding: 0;
    margin: 0;
    position: relative;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 0.2rem;
    background: #50A669 !important;
    cursor: pointer;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px, inset 0 0 2px #038533;
    transition: 250ms;
}
#collegeit-btn:hover {
    box-shadow: 0 0 4px black, rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px,
        rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px,
        inset 0 0 2px #069d3e;
    transition: 250ms;
    background: #069d3e !important;
}
#collegeit-btn:active {
    transform: scale(0.95);
}
#collegeit-btn > img {
    height: 100%;
    box-sizing: border-box;
}

#collegeit-widget-wrapper {
    position: fixed;
    z-index: 9999999;
    bottom: 18%;
    right: 2%;
    transition: 250ms;
    transform-origin: bottom;
    transform: scaleY(0);
    opacity: 0;
}
#collegeit-widget-container {
    position: relative;
}
#collegeit-widget-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1rem;
    cursor: pointer;
    outline: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 0.2rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}
#collegeit-widget-close-btn:hover {
    background-color: rgb(53, 53, 53);
}

#collegeit-widget-iframe {
    height: 555px;
    width: 350px;
    min-height: 515px;
    outline: none;
    border: none;
    background-color: white;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999999;
    border-radius: 12px;
}

#collegeit-new-tt-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: 250ms;
    transition-delay: 250ms;
    opacity: 0;
    pointer-events: none;
    transform: translateY(80px) scale(0.2);
    transform-origin: right;
    background-color: rgb(255, 255, 255);
    font-family: "National-Regular";
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    padding: 0.4rem;
    border-radius: 15px;
    position: absolute;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    top: -165px;
    right: 0px;
    width: 275px;
    padding-left: 50px;
    z-index: 100;
    pointer-events: all;
}

#collegeit-container-btn:hover #collegeit-new-tt-wrapper{
    transform: translateY(0) scale(1);
    opacity: 1;
}
#collegeit-container-btn:hover #collegeit-tooltip {
    transform: translateY(0);
    opacity: 1;
}

#collegeit-new-tt-container {
    position: relative;
    top: 36px;
    text-align: center;
    margin-bottom:36px ;
    left: -25px;
    z-index: 9999998;
}

#collegeit-new-tt-img-wrapper {
    position: absolute;
    top: -75px;
    left: 36%;
    z-index: 100;
}

#collegeit-new-tt-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 1px solid rgb(178, 178, 178);
    object-fit: cover;
    z-index: 100;
}

#collegeit-new-tt-name {
    font-weight: 400;
    font-size: 0.8rem;
    color: #777;
    z-index: 100;
}

#collegeit-new-tt-spec {
    font-weight: 400;
    font-size: 0.8rem;
    color: #777;
    z-index: 100;
}

#collegeit-new-tt-lower-text {
    font-size: 14px;
    z-index: 100;
    line-height: 1.2;
    padding-top: 7px;
    padding-bottom: 3px;
    font-family: Outfit;
}

#collegeit-new-tt-chat-btn {
    border: none;
    outline: none;
    color: white;
    border-radius: 5px;
    background: #1fab52;
    padding: 8px 0px;
    width:200px;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 7px;
    font-weight: 400;
    text-shadow: 0 0 1px #ddd;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 100;
    pointer-events: all; 
    font-family: Outfit;
    
}

#collegeit-new-tt-chat-btn:hover {
    background: #069d3e;
}

#collegeit-new-tt-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    position: absolute;
    top: -40px; /* -43px */
    right: -26px;  /* -33px */
/*     
    height: 35px;
    width: 35px !important; */
    height: 45px;
    width: 45px !important;
    cursor: pointer;
    background-color: transparent;
    z-index: 9999998;
}

#collegeit-new-tt-cancel-icon {
    height: 26px;
    width: 26px !important;
    z-index: 9999999;
}
#main-whatsapp-icon{
    vertical-align: unset;
    transition: 250ms;
    transition-delay: 250ms;
}

@media only screen and (max-width: 512px) {
    #collegeit-widget-contaienr {
        height: 100%;
        width: 100%;
    }
    #collegeit-widget-wrapper {
        width: 100%;
        height: 100%;
        top: 0px;
        right: 0;
    }

    #collegeit-widget-iframe {
        width: 100%;
        height: 100%;
        border-radius: 1px;
    }
}

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

    #collegeit-new-tt-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        transition: 250ms;
        transition-delay: 250ms;
        opacity: 0;
        pointer-events: none;
        transform: translateY(80px) scale(0.2);
        transform-origin: right;
        background-color: rgb(255, 255, 255);
        font-family: "National-Regular";
        margin-bottom: 0.2rem;
        font-size: 0.95rem;
        padding: 0.3rem;
        border-radius: 15px;
        position: absolute;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
        top: -148px;
        right: 0px;
        width: 257px;
        padding-left: 50px;
        z-index: 9999999;
        pointer-events: all;
    }
    #collegeit-new-tt-img {
        height: 50px;
        width: 50px;
        z-index: 100;
    }
    #collegeit-new-tt-lower-text {
        font-size: 12px;
        z-index: 100;
        line-height: 1;
    }
    #collegeit-new-tt-chat-btn {
       
        padding: 10px 20px;
        margin-top: 0px;
        margin-bottom: 9px;
        font-size: 13px;
        font-weight: 500;
        z-index: 100;
        font-family:Outfit;
    }
    #collegeit-new-tt-img-wrapper {
        position: absolute;
        top: -65px;
        left: 36%;
        z-index: 100;
    }
    #collegeit-new-tt-cancel-icon {
        height: 45px !important;
        width: 45px !important;
        
        /* height: 20px;
        width: 20px !important; */
        z-index: 9999999;
    }
    #collegeit-new-tt-lower-text {
        font-size: 13px;
        position: relative;
        top: -10px;
        z-index: 100;
        line-height: 1.2;
    }
}



.collegeit {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: none;
}
.collegeit::before {
    background: none !important;
}
.collegeit::after {
    background: none !important;
}
/* Old code */

#cit-wrapper {
    position: fixed;
    bottom: 5%;
    right: 4%;
    z-index: 9999999;
}

#cit-widget-container {
    position: relative;
    transform-origin: bottom right;
    display: none;
}

#cit-widget-close {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 12px;
    right: 12px;
    border: none;
    background-color: #4e4c4c;
    padding: 2px;
    border-radius: 50%;
    cursor: pointer;
}
#cit-widget-close:hover {
    background-color: #696363;
}
#cit-widget-close:focus {
    box-shadow: 0 0 0 4px #202124, 0 0 0 6px #cccccc;
}



#cit-widget {
    min-height: 515px;
    height: 575px;
    width: 390px;
    border-radius: 12px;
    background-color: #202124;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1), 0px 4px 4px 0px rgba(0, 0, 0, 0.1), 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
    border: none;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

#cit-widget::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}


/* New Code */

.cit-popup-v2-wrapper {
    position: fixed;
    bottom: 5%;
    right: 4%;
    z-index: 99999;
}

  

.cit-popup-v2-container {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1), 0px 4px 4px 0px rgba(0, 0, 0, 0.1), 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 22px 18px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    min-width: 312px;
    background-color: #FFF;
    display: none;
}

.cit-popup-v2-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background-color: white;
    border-radius: 100%;
    height: 28px;
    width: 28px;
    cursor: pointer;
}
.cit-popup-v2-close:hover {
    background-color: #e1e1e1;
}

.cit-popup-v2-close:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 4px #484848;
}


.cit-popup-v2-close > img {
    height: 17px;
}


.cit-popup-v2-namecard {
    display: flex;
    width: 100%;
    padding: 4px 24px;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.cit-popup-v2-namecard-img {
    height: 67px;
    width: 67px;
}

.cit-popup-v2-namecard-content {
    display: flex;
    flex-direction: column;
}

.cit-popup-v2-namecard-name {
    font-family: Outfit;
    font-weight: bold;
    color: #414141;
    font-size: 20px;
}

.cit-popup-v2-namecard-desc {
    font-family: Outfit;
    font-weight: 200;
    color: #414141;
    font-size: 18px;
}

.cit-popup-v2-divider {
    height: 1px;
    width: 100%;
    border-top: 1px solid rgb(227, 227, 227);
}

.cit-popup-v2-messages-container {
    margin-top: 18px;
    width: 100%;
}

.cit-popup-v2-message {
    display: flex;
    margin: 0;
    max-height: 0;
    width: 100%;
    gap: 10px;
    justify-content: start;

}

.cit-popup-v2-message-profile-img {
    height: 36px;
    width: 36px;
}

.cit-popup-v2-messagebox {
    background-color: #F6F6F6;
    padding: 12px;
    border-radius: 18px;
    max-width: 220px;
    position: relative;
    transition: opacity 0.5s ease-in-out;


    font-family: Outfit;
    color: black;
    font-size: 15px;
    font-weight: 400;
}

.cit-popup-v2-sender-name {
    position: absolute;
    top: -18px;
    left: 6px;
    color: #696969;
    font-size: 13px;
}

.cit-popup-v2-buttons-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 18px;
}

.cit-popup-v2-button-webcall {
    font-family: Outfit;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    background: none;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    
    
    background-color: #4880FF;
    color: #FFF;
    border: 1px solid #4880FF;
    cursor: pointer;
    transition: all 200ms;
    outline: none;
}

.cit-popup-v2-button-webcall:hover, .cit-popup-v2-button-webcall:active {
    background-color: #2765f6;
}

.cit-popup-v2-button-webcall:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 4px #0041d7;
}


.cit-popup-v2-button-chat {
    font-family: Outfit;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    background: none;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 200ms;

    
    
    background-color: #FFF;
    color: #0DAF49;
    border: 1px solid #0DAF49;
    cursor: pointer;
    outline: none;
}

.cit-popup-v2-button-chat:hover, .cit-popup-v2-button-chat:active {
    background-color: #edfff4;
    color: #0DAF49;
}
.cit-popup-v2-button-chat:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 4px #008732;

}


.cit-popup-v2-icon-ca {
    height: 20px;
    margin-left: 25px;
    margin-right: 24px;
}


.cit-popup-v2-icon-wa {
    height: 20px;
    margin-left: 25px;
    margin-right: 20px;
}


.cit-popup-v2-dot {
    animation: mercuryTypingAnimation 1.7s infinite ease-in-out;
    background-color: #8d8d8d;
    border-radius: 50%;
    height: 7px;
    margin-right: 4px;
    vertical-align: middle;
    width: 7px;
    display: inline-block;
}

.cit-popup-v2-dot:nth-child(1) {
    animation-delay: 100ms;
}
.cit-popup-v2-dot:nth-child(2) {
    animation-delay: 200ms;
}
.cit-popup-v2-dot:nth-child(3) {
    animation-delay: 100ms;
}
.cit-popup-v2-fade-text {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: inline-block; /* Optional: helps with smooth fade in */
}

.cit-popup-v2-main-button-container {
    display: none;
}

.cit-popup-v2-main-button-container > button {
    background-color: #4880FF;
    color: white;
    border: none;
    height: 64px;
    width: 64px;
    border-radius: 100%;
    position: relative;
    cursor: pointer;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.1s linear;
}

.cit-popup-v2-main-button-container > button:hover {
    background-color: #2b64e9;
    box-shadow: 0 4px 12px 0 rgba(72, 128, 255, 0.5);
    color: white;

}


.cit-popup-v2-main-button-container > button:active {
    scale: 0.97;
}
.cit-popup-v2-main-button-container > button:focus {
    box-shadow: 0 0 0 1px white, 0 0 0 4px #003ece;
}

.cit-popup-v2-main-button-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: #3d3d43 !important;
    animation: cit-ripple 2s ease-in-out 1s 3 forwards;
}

.cit-popup-v2-cb-img {
    width: 26px;
    height: 26px;
    animation: cit-shake 0.5s 3s 2;
}

.cit-popup-v2-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #4CAF50;
}

@keyframes cit-ripple {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    2% {
        transform: scale(0);
        opacity: 0.8;
    }
    85% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes cit-appear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cit-shake {
    0% {
        transform: rotate(0deg);
    }
    
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}



@keyframes mercuryTypingAnimation {
    0% {
      transform: translateY(0px);
      background-color:#909090; 
    }
    28% {
      transform: translateY(-7px);
      background-color:#909090; 
    }
    44% {
      transform: translateY(0px);
      background-color: #909090; 
    }
}

@keyframes cit-fade {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


@keyframes cit-collapse {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes cit-expand {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cit-collapse-br {
    from {
        opacity: 1;
        transform: scale(1);
        transform-origin: bottom right;
    }

    to {
        opacity: 0;
        transform: scale(0);
        transform-origin: bottom right;
    }

}

@keyframes cit-expand-br {
    from {
        opacity: 0;
        transform: scale(0);
        transform-origin: bottom right;
    }

    to {
        opacity: 1;
        transform: scale(1);
        transform-origin: bottom right;
    }
}

@keyframes cit-expand-b {
    from {
        opacity: 0;
        transform: scale(0);
        transform-origin: bottom;
    }

    to {
        opacity: 1;
        transform: scale(1);
        transform-origin: bottom;
    }
}

@keyframes cit-expand-tl {
    from {
        opacity: 1;
        transform: scaleX(1) scaleY(1);
        transform-origin: bottom right;
    }

    to {
        opacity: 0;
        transform: scaleX(1.2) scaleY(1.5);
        transform-origin: bottom right;
    }
}



@media only screen and (max-width: 600px) {
    
    
    .cit-popup-v2-wrapper.cit-popup-v2-expanded {
        bottom: 20px;
        right: 50%;
        transform: translate(50%, 0);
    }

    .cit-popup-v2-namecard-name {
        font-size: 18px;
    }

    .cit-popup-v2-namecard-desc {
        font-size: 16px;
    }

    
    .cit-popup-v2-namecard-img {
        height: 57px;
        width: 57px;
    }

    .cit-popup-v2-message-profile-img {
        height: 32px;
        width: 32px;
    }

    .cit-popup-v2-container {
        padding-top: 28px;
        padding-bottom: 42px;
    }

    .cit-popup-v2-buttons-container {
        gap: 21px;
    }


}


@media only screen and (max-width: 512px) {
    #cit-widget-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    #cit-widget {
        width: 100%;
        height: 97vh;
        border-radius: 0;
    }
}
