@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html,
body {
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-size: 14px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

button:focus {
    outline: none;
    border: none;
}


/* ------------main style----------- */


/* ------------login page----------- */

.loginWrapper {
    background-color: #ebf5fc;
    background-image: url('../images/shape.png');
    background-size: cover;
    background-position: right right;
    box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.8), 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.loginWrapper h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.3px;
}

.loginWrapper .inputBox label {
    color: #ffffff;
    font-size: 15px;
}

.loginWrapper .inputBox input {
    border-radius: 40px;
    box-shadow: inset -5px -5px 15px rgba(255, 255, 255, 0.8), inset 5px 5px 10px rgba(0, 0, 0, 0.1);
    border: 0 none;
    background: #ebf5fc;
    padding: 10px 15px;
    transition: all .74s;
    color: #787878;
}

.loginWrapper .inputBox .btn-block {
    border-radius: 40px;
    box-shadow: -5px -5px 15px rgba(255, 255, 255, 0.8), 5px 5px 10px rgba(0, 0, 0, 0.1);
    border: 0 none;
    background: #ebf5fc;
    color: #787878;
    padding: 10px;
    font-size: 16px;
    transition: all .74s;
}

.loginWrapper .inputBox .btn-block:active {
    box-shadow: inset -5px -5px 15px rgba(255, 255, 255, 0.8), inset 5px 5px 10px rgba(0, 0, 0, 0.1);
    color: #787878;
}

.loginWrapper p a {
    color: #787878;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #5968ba;
}

.custom-control-label::after {
    position: absolute;
    top: 2px;
    left: -1px;
    display: block;
    width: 17px;
    height: 17px;
    content: "";
    FONT-SIZE: 42px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-control-label::before {
    background-color: #fff;
}


/* -----------------index page------------------ */

header {
    position: relative;
    padding: 0;
    background-color: rgb(244 249 255 / 50%);
}

.dropdown .btn-secondary {
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    color: #282828 !important;
    box-shadow: none !important;
}

.dropdown .user_login span,
.user_name {
    background-color: #5968ba;
    color: #fff;
    padding: 12px 9px;
    border-radius: 50%;
    border: 2px solid #eee;
    font-size: 18px;
    width: auto;
    display: inline-block;
}

.dropdown-menu {
    margin-top: 7px;
    padding: 20px 30px;
    border: none;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-menu h1 {
    font-size: 18px;
}

.dropdown-menu .btn {
    background-color: #5968ba;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.logo_img {
    width: 180px;
}

.logo_img1 {
    width: 120px;
}

html,
body {
    background-image: linear-gradient(rgb(28 92 135 / 90%), rgb(0 108 181 / 30%)), url(../images/bg.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    color: #fff;
    background-attachment: fixed;
}

.banner_txt {
    padding-top: 50px;
}

.banner_txt h3 {
    font-size: 40px;
    font-weight: 600;
}

.banner_txt p {
    font-size: 18px;
}

.activities {
    position: relative;
    padding: 80px 0 50px;
}

.activity_box {
    padding: 20px;
    box-shadow: 0 0 40px 0 rgb(0 0 0 / 30%);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: grid;
    justify-content: center;
    background-color: #fff;
    border-bottom: 5px solid #006cb4;
    background: linear-gradient(45deg, rgb(255 87 34 / 70%), rgb(200 49 119 / 60%));
}

.activity_box img {
    width: 200px;
    height: 180px;
}

.activity_box::before {
    background-color: rgb(134 189 242 / 30%);
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleX(0);
    opacity: 0;
    border-radius: 20px;
    transition: all .5s ease-in-out;
}

.activity_box:hover:before {
    transform: scaleX(1);
    opacity: 1;
    height: 100%;
}

.activity_box h4 {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff2f2;
    font-family: 'Berkshire Swash', cursive;
}

.activity_box p {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: #787878;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #056eb5!important;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #cdebff!important;
    z-index: 2;
    /* box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%); */
}

.file {
    position: relative;
    display: flex;
    align-items: center;
}

.file>input[type='file'] {
    display: none
}

.file>.upload_div {
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    outline: 0;
    user-select: none;
    border-color: rgb(216, 216, 216) rgb(209, 209, 209) rgb(186, 186, 186);
    border-style: solid;
    border-radius: 4px;
    border-width: 1px;
    background-color: hsl(28deg 87% 52%);
    color: #fff;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 6px;
    padding-bottom: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    transition: all .4s;
    border-radius: 30px;
}

.file>.upload_div:hover {
    border-color: hsl(333deg 78% 63%);
}

.file>.upload_div:active {
    background-color: hsl(333deg 78% 63%);
}

.file>.upload_div>i {
    padding-right: 5px;
}

.file--upload>label {
    color: #fff;
    border-color: hsl(0deg 0% 100%);
    margin-bottom: 0px;
}

.file--upload>label:hover {
    border-color: hsl(333deg 78% 63%);
    background-color: hsl(333deg 78% 63%);
}

.file--upload>label:active {
    background-color: hsl(333deg 78% 63%);
}

.img_preview {
    width: 55px;
    height: 55px;
    border: 2px solid #ef7f1b;
    border-radius: 50%;
    object-fit: cover;
}

.form-control {
    background-color: #fff;
    border: none;
    outline: none;
    padding: 12px 17px;
    border-radius: 30px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #ef7e1a;
}

.nav-pills .nav-link {
    border-radius: 0.25rem;
    background: rgb(138 188 222);
    color: #233759;
    margin: 0 5px;
    padding: 8px 15px;
    font-size: 18px;
    transition: all .75s;
    border-radius: 10px;
}

video {
    object-fit: cover;
    height: 400px;
    border: 25px solid #eee;
}

input[type="radio"]{
    display: none;
}

.tab-content label {
    border: 1px solid #fff;
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
    background: #056eb5;
    border-radius: 20px;
}

.tab-content label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.tab-content label img {
    height: auto;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    object-fit: cover;
    border-radius: 15px;
}

.tab-content :checked+label {
    border-color: #ddd;
}

.tab-content :checked+label:before {
    content: "✓";
    background-color: #ef7e1a;
    transform: scale(1);
}

.tab-content :checked+label img {
    transform: scale(0.93);
    box-shadow: 0 0 30px #ab3668;
    z-index: -1;
}

.btn-warning {
    color: #fff;
    background-color: #ef7f1b;
    border-color: #fff;
    padding: 10px 25px;
    transition: all .5s;
    width: 200px;
    border-radius: 30px;
}

.btn-warning:hover {
    color: #fff;
    background-color: #eb5e9e;
    border-color: transparent;
    padding: 10px 25px;
}

.preview_img {
    height: 700px;
    object-fit: cover;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #fff;
    padding: 10px 25px;
    transition: all .5s;
    width: 200px;
    border-radius: 30px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: transparent;
    padding: 10px 25px;
}

.btn-danger {
    color: #fff;
    background-color: #cb3769;
    border-color: #fff;
    padding: 10px 25px;
    transition: all .5s;
    width: 200px;
    border-radius: 30px;
}

.btn-danger:hover {
    color: #fff;
    background-color: #ba285a;
    border-color: transparent;
    padding: 10px 25px;
}

.wrapper:after {
    content: "";
    display: table;
    clear: both;
}

.picture {
    width: 100%;
    position: relative;
    margin: 10px 0px;
}

.frame {
    background-image: url(../images/birthday_images_video_preview_holder.png);
    background-size: contain;
    width: 100%;
    height: auto;
    position: absolute;
    right: -18px;
    top: 0;
    background-repeat: no-repeat;
    bottom: 0;
    background-position: top;
}

.inside img {
    max-width: 100%;
    height: auto;
    position: relative;
  
    object-fit: cover;
    margin: auto;
    display: block;
    width: 100%;
    border: 5px solid #eee;
}

.preview_sec {
    padding: 60px 0;
}

h3 {
    font-size: 26px;
    /* margin-bottom: 80px !important; */
}

h3 span {
    font-weight: 900;
    font-size: 74px;
    /* background: linear-gradient(to right, #ef7f1a 0%, #ea5699 100%);
    color: #fff;
    padding: 5px; */
    color: #fff;
    padding: 5px;
    background: -webkit-linear-gradient(#f0f0f0, #ea5699);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Berkshire Swash', cursive;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #eee;
}

.table-dark {
    color: #fff;
    background-color: #056eb5 !important;
}

.table-dark thead th {
    background-color: #085990 !important;
}

.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #0e5e94 !important;
}

.table-dark thead th {
    border: none !important;
}

.time_span {
    font-size: 13px;
}

.time_span i {
    font-size: 11px;
}

.vbox-child img {
    max-width: 500px !important;
}

.form_bg {
    background: rgb(5 110 181 / 60%);
    padding: 20px 10px;
    border-radius: 10px;
}

.back_btn {
    position: absolute;
    top: 11%;
}


/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .9);
    z-index: 99;
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/Bovicuraa-Loader.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translate(-50%, -50%);
}

label.error{
    color:red;
    display: contents;
}

.iconBox input {
    display: none;
}

.iconBox img {
    padding: 10px;
    border: 2px solid #056eb5;
    border-radius: 8px;
    cursor: pointer;
}

.iconBox input:checked + img {
    
    border: 2px solid #fff;
}