/* Layout */
* {
    font-family: "Mulish", sans-serif;
}
html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000;
}
a:hover {
    color: unset;
}

/* Size */
.w-40 {
    width: 40% !important;
}
.w-55px {
    width: 55px !important;
}
.w-fit-content {
    width: fit-content !important;
}

/* margin */
.offset-b5 {
    margin-bottom: -5px !important;
}

/* text */
.text-purple {
    color: #463eea !important;
}
.text-gray {
    color: #333333 !important;
}

/* font */
.fs-7 {
    font-size: 0.875rem !important;
}
.fs-8 {
    font-size: 0.75rem !important;
}

/* form */
.form-control {
    height: 30px;
}
.form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='2.5' fill='%23625bf7'/></svg>");
}
.form-check-input:checked {
    background-color: #fff;
    border-color: #c2c2c2;
}
.form-select {
    font-size: 0.875rem;
}

/* bg */
.bg-main {
    background: url("../images/bg.png");
    background-size: cover;
}
.bg-purple {
    background-color: #716af2;
    color: #fff;
}
.bg-light-purple {
    background-color: #f4f4ff;
}
.bg-green {
    background-color: #00ba07;
    color: #fff;
}
.bg-bright-purple {
    background-color: #bd00ff;
    color: #fff;
}
.bg-blue {
    background-color: #047be9;
    color: #fff;
}
.bg-red {
    background-color: #ff0000;
    color: #fff;
}
.bg-gradient-purple {
    background-image: radial-gradient(circle at 50% 50%, rgba(144, 138, 255, 0.56), rgba(144, 138, 255, 0) 70%);
}

/* button */
.btn-purple {
    background: linear-gradient(to bottom, #625bf7, #463eea);
    color: #fff;
}
.btn-purple:hover {
    background: linear-gradient(to bottom, #7871dc, #564ee8);
    color: #fff;
}