@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
    --bg-color: #f1f1f1;
    --main-color: #fb5012;
    --txt-color:#343a40;
    --txt-color-semi:#737373;
    --border-color:#bdbdbd;
    --m-gray:#8b949d7d;
}

*{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    color:var(--txt-color);
}

body{
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    width: 100%;
}

  #notification{
    display: none;
    color: white;
    box-sizing: border-box;
    min-height: 70px;
    width: 100%;
    border-radius: .1rem;
    align-items: center;
    justify-content: space-around;
    animation: fadeIn .2s ease-in-out;
    position: fixed;
    z-index: 8;
  }

  #notification-txt-section{
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
  }

  #notification-img{
    height: 26px;
    padding: 0px 15px;
  }

  #notification-txt{
    font-size: 20px;
    font-weight: 400;
    padding: 10px 5px;
  }

  #notification-action{
    display: none;
    margin-left: 15px;
    outline: none;
    border: none;
    cursor: pointer;
    width: 120px;
    height: 30px;
    border-radius: .1rem;
    font-size: medium;
    font-weight: bold;
  }

#pop_up_index_outer{
    display: none;
    width: 100%;
    height: 100%;
    position:fixed;
    background-color: rgba(0, 0, 0, .6)!important;
    backdrop-filter: blur(10px);
    z-index: 11;
    padding: 0;
    margin: 0;
    top: 0;
  }
  
  #pop_up_index{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    top: 50%;
    right: 50%;
    background: white;
    position:fixed;
    border-radius: 1px;
    transform: translate(50%, -50%);
    z-index: 20;
    padding: 25px 10px 25px 10px;
    text-align: center;
    width: 50%;
    height: 70%;
  }

.close-pop-up-btn{
    position: absolute;
    top: 30px;
    right: 40px;
    width: 40px;
    height: 40px;
    padding: 14px 14px 14px 14px;
    outline: 0!important;
    border: none;
    border-radius: .1rem;
    background-color: var(--card-bg);
    background-image: url("../media/close-solid.svg");
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s;
    z-index:9;
    cursor: pointer;
}

.close-pop-up-btn:hover{
    background-image: url("../media/close-solid-red.svg");
    cursor: pointer;
}

#qr-image-f{
    height: 360px;
}

.popupbtns-div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
}

.popupbtns-div .action{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.mcard{
    background-color: white;
    border-radius: .3rem;
    box-shadow: 0 2px 8px #00000029;
    padding: 80px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mcard > h3{
    color : var(--txt-color);
    margin-top: 0;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.placeholder{
    color: var(--txt-color-semi);
    font-weight: 200;
    text-align: left;
    width: 50%;
}

.req-in{
    color: var(--main-color);
    box-sizing: content-box;
    margin-left: 10px;
    font-size: 25px;
    line-height: 10px;
}

.minput-group{
    display: flex;
    text-align: center;
    width: 50%;
    border-bottom: 3px solid var(--border-color);
    border-radius: .1rem;
    transition: all .3s;
    animation-duration: .3s;
    margin: 0px 0px 30px 0px;
}

.minput-group-full{
    width: 100% !important;
}

.semicardcontainer{
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0px 0px 30px 0px;
    width: 50%;
}

.minput-group-semi{
    margin: 0 !important;
    width: 100px;
}

.minput-group > img{
  width: 20px;
  height: 24px;
}

input[type=text] ,input[type=password],input[type=email],input[type=search]{
    appearance: none;
    border: none;
    width: 100%;
    outline: none;
    padding: 5px 0px;
    font-size: 16px;
    transition: all .3s;
    background-color: transparent;
}

.minput-group-semi .inputtime{
    width: 80px;
}

input[type=date]{
    appearance: none;
    border: none;
    outline: none;
    padding: 5px 0px;
    font-size: 16px;
    transition: all .3s;
    background-color: transparent;
    border-bottom: 3px solid #bdbdbd;
}

input[type=color]{
    appearance: none;
    float: right;
    width: 35px;
    height: 35px;
    outline: none;
    border: 1px solid #bdbdbd;
    border-radius: .3rem;
    background-color: white;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
input[type="color"]::-webkit-color-swatch {
	border: none;
    outline: none;
    border-radius: .3rem;
}

select{
    border: none;
    outline: none;
    padding: 5px;
    font-size: 16px;
    transition: all .3s;
    cursor: pointer;
    background-color: transparent;
    border-bottom: 3px solid #bdbdbd;
    min-width: 200px;
}

input[type=checkbox]{
    appearance: none;
    height: 20px;
    width: 20px;
    outline: none;
    border: 2px solid black;
    border-radius: .3rem;
    cursor: pointer;
    margin: 0px 5px;
    transition: all .3s;
    background-color: white;
}

input[type=checkbox]:checked{
    background-image: url("../media/check.svg");
    background-repeat: no-repeat;
    background-color: #E0F2F1;
    background-size: contain;
}

input[type=range]{
    appearance: none;
    width: 240px;
    cursor: pointer;
    height: 6px;
    background-color: #E0F2F1;
    border-radius: .1rem;
    display: flex;
    align-items: center;
}

.btn{
    position: relative;
    width: 260px;
    height: 60px;
    border: none;
    font-size: 20px;
    font-weight: 700;
    transition: all .3s;
    border-radius: .3rem;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-form-area{
    width: 100%;
    text-align: center;
    margin-top: 55px;
}

.btn-generate{
    background-color: var(--txt-color);
    color:var(--main-color);
}

.btn-generate:hover{
    background-color: var(--main-color);
    color:var(--txt-color);
}

.bottom-sep{
    box-sizing: border-box;
    height: 100px;
}

#mainadsbygoogle{
    display:block; 
    text-align:center;
}

#mainadsbygoogle #aswift_1_host{
    width: 100% !important;
}

#mainadsbygoogle iframe{
    width: 100% !important;
}

#download-btn{
    background-color: transparent;
    border: none;
    outline: none;
}

#download-btn:hover{
    cursor: pointer;
}

#download-btn img{
    width: 35px;
}

.mtop25{
    margin-top: 25px!important;
    box-sizing: border-box;
}

#logoiconref{
    color: var(--m-gray);
}
@media only screen and (max-width:2200px) {
    .placeholder{
        width: 40%;
    }
    .minput-group{
        width: 40%;
    }
    .semicardcontainer{
    width: 40%;
    }
    .minput-group-full{
        width: 100% !important;
    }
}


@media only screen and (max-width:1650px) {
    .placeholder{
        width: 60%;
    }
    .minput-group{
        width: 60%;
    }
    .semicardcontainer{
        width: 60%;
    }
    .minput-group-full{
        width: 100% !important;
    }
}

@media only screen and (max-width:1300px) {
    .placeholder{
        width: 70%;
    }
    .minput-group{
        width: 70%;
    }
    .semicardcontainer{
        width: 70%;
    }
    .minput-group-full{
        width: 100% !important;
    }
}

@media only screen and (max-width:992px) {
    .placeholder{
        width: 80%;
    }
    .minput-group{
        width: 80%;
    }
    .semicardcontainer{
        width: 80%;
    }
    .minput-group-full{
        width: 100% !important;
    }

    #pop_up_index{
        width: 70%;
        height: 70%;
    }
}

@media only screen and (max-width:768px) {
    .placeholder{
        width: 100%;
    }
    .minput-group{
        width: 100%;
    }
    .semicardcontainer{
        width: 100%;
    }
    .btn{
        width: 200px;
        height: 50px;
        font-size: 16px;
        font-weight: 600;
    }

    #mainadsbygoogle{
        width: 100%;
    }

    .minput-group-full{
        width: 100% !important;
    }

    .bottom-sep{
        box-sizing: border-box;
        height: 60px;
    }

    #pop_up_index{
        width: 90%;
        height: 90%;
    }
    .popupbtns-div{
        width: 80%;
    }
}

@media only screen and (max-width:576px) {
    .mcard{
        padding: 80px 20px;
    }

    .minput-group-full{
        width: 100% !important;
    }

     #pop_up_index{
        width: 90%;
        height: 90%;
     }
}