
.dashboardHead {
    padding: 22px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.loginBtn a{
    display: flex;
    align-items: center;
    column-gap: 8px;
 
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    background: #1D7AD9;
    border-radius: 5px;
    padding: 10px 16px;
}
.dashboardTopMenu{
    max-width: 320px;
    width: 100%;
}
.dashboardHead h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: #0F172A;
}
.layout{
    display: flex;
    flex-grow: 1;
    justify-content: center;
}
.search::placeholder {
    color: #94A3B8;
    opacity: 1; /* Firefox */
  }
  
  .search:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #94A3B8;
  }
  
  .search::-ms-input-placeholder { /* Microsoft Edge */
   color: #94A3B8;
  }
.dashboardHead .layoutIcon{
    display: flex;
    max-width: 32px;
    height: 32px;
    flex:0 0 32px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.layoutIcon.activeLayout{
    background-color: #F1F5F9;
}
.dashboardHead .search{
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 7px;
    max-width: 159px;
    width: 100%;
    height: 32px;
    color: #94A3B8;
}
.dashboardBody {
    background-color: #fff;
    padding: 34px 15px 68px;
    min-height: 100vh;
    height: 100%;
}
.serachFeild{
    max-width: 159px;
    width: 100%;
}
.optionSec {
    padding: 0px 26px 80px;
    margin-left: auto;
    max-width: calc(100% - 288px);
    width: 100%;
}

.optionSec h1 {
    color: #060606;
    text-align: center;
    font-size: 33px;
    line-height: 120.187%;
}

.btnsWrapper {
    padding: 30px 0;
    max-width: 976px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid #E9E8E8;
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.optionBtn {
    display: flex;
    max-width: 400px;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 109px;
    border-radius: 10px;
    border: 1px solid #EEE;
    background: #FFF;
    color: #060606;
font-size: 21px;
font-weight: 500;
line-height: 120.187%;
text-transform: capitalize;
}

.optionBtn:hover {
    border-color: #05ADA3;
    border-radius: 10px;
    color: #05ADA3;
}

.tipsBtn {
    padding: 16px 23px;
    max-width: max-content;
    margin: 67px auto 0;
    display: block;
    color: #060606;
    font-size: 17px;
    line-height: 120.187%; /* 20.432px */
    text-decoration-line: underline;
}
.tipsBtn:hover{
    background: #f0fcfb;
    text-decoration: none;
    border-radius: 2px;
}

/* .customOption {
    background: linear-gradient(90deg, #FE8B0D 0%, #BDD095 100%);
} */
.customOrderBtn a{
    display: block;
    position: relative;
    box-sizing: border-box;
    background: linear-gradient(90deg, #FF8906, #9CE2A7, #ffeb3b, #FF8906);
    background-size: 400%;
    border-radius: 10px;
    z-index: 1;
    animation: animate 10s linear infinite;
    color: #000;
    height: 42px;
    outline: none;
    cursor: pointer;
    margin-left: 12px;
    text-align: center;
    display: flex;
    max-width: 400px;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 109px;
    font-size: 24px;
    color: #060606;
    font-size: 21px;
    font-weight: 500;
    text-transform: capitalize;
}
.customOrderBtn a:before {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
    background: linear-gradient(90deg, #FF8906, #9CE2A7, #ffeb3b, #FF8906);
    background-size: 400%;
    border-radius: 10px;
    opacity: 0;
    transition: .1s;
}
.customOrderBtn a:hover:before{
    filter: blur(5px);
    opacity: 1;
    animation: animate 8s linear infinite;
}
.customOrderBtn{
    position: relative;
    width: 400px;
}
.absolOffer{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    right: -4px;
    top: -4px;
    pointer-events: none;
}
.offerText {
    position: absolute;
    right: 5px;
    top: 23px;
    color: #FFF;
font-size: 15px;
font-weight: 700;
transform: rotate(46.051deg);
}
@keyframes animate{
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 400%;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}
@media (max-width:575px) {
    .optionSec h1 {
        font-size: 25px;
        padding-bottom: 10px;
    }

    .btnsWrapper {
        padding: 30px 20px;
    }

    .optionBtn {
        max-width: 100%;
        font-size: 17px;
        height: 90px;
    }

    .tipsBtn {
        margin: 10px auto 0;
        font-size: 17px;
    }

    .optionSec {
        padding: 70px 0 78px;
    }
    .customOrderBtn{
        width: 100%;
    }
    .customOrderBtn a{
        height: 90px;
        font-size: 17px;
    }
    .absolOffer{
        max-width: 63px;
        right: -3px;
        top: -3px;
    }
    .absolOffer > img{
        width: 100%;
    }
    .offerText{
        font-size: 12px;
        right: 0px;
        top: 19px;
    }
    .dashboardHead{
        align-items: start;
    }
}