@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}


body .main__body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .main__body .input__wrapper {
  /*display: flex;*/
  flex-direction: column;
  gap: 5px;
}
body .main__body .input__wrapper label {
  font-size: 14px;
  font-weight: 500;
  color: rgb(102, 112, 133);
}
body .main__body .input__wrapper .main__input {
  width: 100%;
  flex: 1;
  min-height: 45px;
  border: 1px solid rgb(190, 194, 195);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
body .main__body .input__wrapper .main__input.radio__buttons {
  border: none;
  padding: 0;
  display: flex;
  gap: 8px;
}
body .main__body .input__wrapper .main__input.radio__buttons .radio {
  position: relative;
  flex: 1;
  height: 45px;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .main__body .input__wrapper .main__input.radio__buttons .radio input {
  width: auto;
  height: auto;
  position: absolute;
  flex: 1;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgb(245, 245, 245);
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
}
body .main__body .input__wrapper .main__input.radio__buttons .radio input:checked {
  border-color: rgb(0, 97, 171);
  background: rgba(0, 97, 171, 0.05);
}
body .main__body .input__wrapper .main__input.radio__buttons .radio input:checked + label {
  color: rgb(0, 97, 171);
}
body .main__body .input__wrapper .main__input.radio__buttons .radio label {
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
}
    body .main__body .input__wrapper .main__input input,
    body .main__body .input__wrapper .main__input textarea {
        border: none;
        outline: none;
        width: 100%;
        height: 100%;
        padding: 11px 35px 11px 15px !important;
        font-size: 14px;
        font-weight: 500;
        resize: none;
        cursor:auto;
    }
body .main__body .input__wrapper .main__input input::-webkit-inner-spin-button, body .main__body .input__wrapper .main__input input::-webkit-calendar-picker-indicator,
body .main__body .input__wrapper .main__input textarea::-webkit-inner-spin-button,
body .main__body .input__wrapper .main__input textarea::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
body .main__body .input__wrapper .main__input select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  padding-inline: 15px;
}
body .main__body .input__wrapper .main__input img {
  position: absolute;
  right: 12.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
  pointer-events: none;
}
body .main__body header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  border-bottom: 1px solid rgb(231, 231, 231);
  padding-inline: 33px 12px;
}
body .main__body header .header__left .hamburger__icon {
  width: 24px;
  aspect-ratio: 1;
}
body .main__body header .header__right {
  display: flex;
  align-items: center;
  gap: 33px;
}
body .main__body header .header__right .notification {
  position: relative;
}
body .main__body header .header__right .notification img {
  width: 28px;
  height: auto;
}
body .main__body header .header__right .notification .notification__ping {
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgb(227, 31, 36);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2000px;
  top: -5px;
  right: -5px;
  color: white;
}

    body .main__body main {
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        background: rgb(245, 245, 245);
        flex: 1;
        overflow-y: auto;
    }

        body .main__body main .lead__wrapper {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

            body .main__body main .lead__wrapper h2 {
                font-size: 28px;
                font-weight: 700;
            }

            body .main__body main .lead__wrapper .lead__options {
                display: flex;
                gap: 15px;
            }

                body .main__body main .lead__wrapper .lead__options .option {
                    flex: 1;
                    padding: 10px 18px;
                    background: white;
                    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
                    border-radius: 18px;
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    border: none;
                    outline: none;
                    cursor: pointer;
                    transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
                }
                    body .main__body main .lead__wrapper .lead__options .option:hover {
                        scale: 1.05;
                    }

                   

                    body .main__body main .lead__wrapper .lead__options .option p {
                        font-size: 16px;
                        font-weight: 600;
                        color: rgb(27, 38, 44);
                    }/*body .main__body main .lead__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body .main__body main .lead__wrapper h2 {
  font-size: 28px;
  font-weight: 700;
}
    body .main__body main .lead__wrapper .lead__options {
        display: flex;
        gap: 23px;
    }

        body .main__body main .lead__wrapper .lead__options .option {
            flex: 1;
            padding: 0px 10px;
            background: white;
            box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
            border-radius: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: none;
            outline: none;
            cursor: pointer;
            transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        }

            body .main__body main .lead__wrapper .lead__options .option:hover {
                scale: 1.05;
            }

            body .main__body main .lead__wrapper .lead__options .option img {
                width: 42px;
                height: auto;
            }

            body .main__body main .lead__wrapper .lead__options .option p {
                font-size: 16px;
                font-weight: 600;
                color: rgb(27, 38, 44);
            }*/

body .main__body main .callHistory__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 18px;
}
body .main__body main .callHistory__wrapper h3 {
  font-size: 20px;
  font-weight: 700;
}
body .main__body main .callHistory__wrapper .call__history {
  display: flex;
  gap: 20px;
  width: 100%;
}
body .main__body main .callHistory__wrapper .call__history .box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 97, 171, 0.1);
  border-radius: 14px;
  flex: 1;
  padding: 12px 20px;
}
body .main__body main .callHistory__wrapper .call__history .box span {
  font-size: 26px;
  font-weight: 700;
  color: rgb(27, 38, 44);
}
body .main__body main .callHistory__wrapper .call__history .box p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(102, 112, 133);
}
body .main__body main .section__three {
  padding: 20px;
  border-radius: 18px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
body .main__body main .section__four {
  background: white;
  border-radius: 18px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body .main__body main .section__four .tab {
  display: flex;
  height: 39px;
  gap: 20px;
}
body .main__body main .section__four .tab button {
  flex: 1;
  height: 100%;
  background: rgb(245, 245, 245);
  color: rgb(44, 62, 80);
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
body .main__body main .section__four .tab button.active {
  background: rgb(0, 97, 171);
  color: white;
}
body .main__body main .section__four .tabcontent {
  display: none;
  animation: fadeEffect 1s; 
}
body .main__body main .section__four .tabcontent.main .content__wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
body .main__body main .section__four .tabcontent.history .content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body .main__body main .section__four .tabcontent.history .content__wrapper .content__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
body .main__body main .section__four .tabcontent.history .content__wrapper .content__inputs .input__wrapper {
  flex: 1;
}
body .main__body main .section__four .tabcontent.history .content__wrapper .content__table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body .main__body main .section__four .tabcontent.history .content__wrapper .content__table .content__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
body .main__body main .section__four .tabcontent.history .content__wrapper .content__table .content__head h3 {
  font-size: 20px;
  font-weight: 700;
}
body .main__body main .section__four .tabcontent.history .content__wrapper .content__table .content__head span {
  font-size: 14px;
  font-weight: 700;
  background: rgba(0, 97, 171, 0.1);
  padding: 2px 7px;
  border-radius: 100px;
  color: rgb(0, 97, 171);
}
.highlight {
    font-size: 14px;
    font-weight: 700;
    background: rgba(0, 97, 171, 0.1);
    padding: 2px 7px;
    border-radius: 100px;
    color: rgb(0, 97, 171);
}
.highlighttabfupgrid {
    font-size: 14px;
    font-weight: 700;
    /* background: #9ea7b1; */
    /* padding: 2px 7px; */
    border-radius: 100px;
    /* color: rgb(237, 240, 243); */
    margin-left: 5px;
    display: inline;
    white-space: nowrap;
    padding: 0px 6px 1px 3px;
    background: #dee2e6;
    color: #0061ab;
}


    /*add custom css*/
    button.option p {
        font-size: 12px !important;
    }

    button.option {
        height: 74px;
    }





    @keyframes fadeEffect {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
   /* Custom css address form buttons*/
@media only screen and (max-width: 1600px) {
    /*add custom css*/
    button.option p {
        font-size: 12px !important;
    }

    button.option {
        height: 74px;
    }

    body .main__body main .lead__wrapper .lead__options .option img {
        width: 25px;
        height: auto;
    }

    body .main__body main .lead__wrapper .lead__options {
        display: flex;
        gap: 15px;
    }

        body .main__body main .lead__wrapper .lead__options .option {
            flex: 1;
            padding: 10px 18px;
            background: white;
            box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
            border-radius: 18px;
            display: flex;
            align-items: center;
            gap: 20px;
            border: none;
            outline: none;
            cursor: pointer;
            transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        }
}