:root {
    --gd-red: #ed1b2e;
    --gd-white: #ffffff;
    --gd-yellow: #feb828;
    --gd-dark:#11101D;
    --gd-dark-blue: #2c3570;
    --gd-default-height: unset;
    --gd-green: #00a651;
    --gd-font-size-base: 15px;
    --gd-com-bg-color: #E4E9F7;
}

/* font-weight */
.f-b-1{font-weight:100;}
.f-b-2{font-weight:200;}
.f-b-3{font-weight:300;}
.f-b-4{font-weight:400;}
.f-b-5{font-weight:500;}
.f-b-6{font-weight:600;}
.f-b-7{font-weight:700;}
.f-b-8{font-weight:800;}
.f-b-9{font-weight:900;}

*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
}

/* Common Color */
.g-r{
    color: var(--gd-red);
}
.g-g{
    color: var(--gd-green);
}
.g-y{
    color: var(--gd-yellow);
}
.g-db{
    color: var(--gd-dark-blue);
}

body{
    width: 100vw;
    height: 100vh;
}
.welcome-div{
    width: 100vw;
    height: 100vh;
}
.errMsg{
    color: var(--gd-red);
}
.welcome-logo{
    width:75%;
    display: block;
    margin: auto;
}
.footer-welcome {
    text-align: center;
    position: fixed;
    bottom: 0px;
    width: 100%;
}
.card-shadow{
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 1px 10px #8080802e;
    padding: 10px;
}
/* Loader */
.pageLoader{
    background: url(../img/grand-logo.gif) no-repeat center center;
    position: fixed;
    background-size: 150px;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    background-color: #ffffffe8;
}

.del-btn{
    border: 0;
    font-size: 20px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: rgb(0, 126, 27);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
  }

  #snackbar-red.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  #snackbar-red {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: rgb(255, 0, 0);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
  }

  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }

  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }

  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }

  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }

  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }

.id-short-url{
    text-align: center;
    cursor: pointer;
}
