:root {
    --primary: #0055a6;
    --primary-hover: #014e97;
    --secondary: #ee1a22;
    --secondary-hover: #d40e15;
    --third: #008444;
    --third-hover: #016333;
    --gray: #333333;
    --lightgray: #444;
    --white: #fff;
    --red: #bc1525;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #333;
    background-color: #f9f9f9;
    background-image: url(../images/bgimage.jpg);
}

.countno {
    font-family: "Kdam Thmor Pro", sans-serif;
    margin-top: 15px;
    font-size: 30px;
    color: var(--red);
    border-radius: 50px;
    /* width: 100px; */
    /* height: 100px; */
    /* border: 2px solid var(--red); */
    /* line-height: 100px; */
    /* text-align: center; */
    /* margin: auto; */
    /* margin-top: 15px; */
}

.countno-losing {
    color: #8f8e8e;
}

.color-gray {
    color: #666;
}

.inner-container {
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    border-radius: 10px;
    width: 80%;
    margin: auto;
}

.headersection {
    margin-top: 25px;
    margin-bottom: 20px;
}

.logo-main {
    width: 250px;
    margin-bottom: 20px;
}

.image-container {
}

.image-container img {
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.img-name {
    font-size: 16px;
    margin: 15px 0;
    font-weight: 500;
}

.pic-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #bc1525;
}

.btn {
    background: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
}

.btn:hover,
.btn:active,
.btn:focus {
    background: var(--secondary-hover);
    color: var(--white);
    border: 1px solid var(--secondary-hover);
}

.btn2 {
    background: var(--white);
    color: var(--red);
    border: 1px solid var(--red);
}

.btn2:hover,
.btn2:active,
.btn2:focus {
    background: var(--secondary-hover);
    color: var(--white);
    border: 1px solid var(--secondary-hover);
}

.auth-wrapper {
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    margin: auto;
    margin-top: 10vh;
}

.with-full {
    width: 100%;
}

.text-sm {
    font-size: 12px;
    color: var(--lightgray);
    margin-top: 5px;
    padding: 0 6px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-group > * {
    margin: 0.5rem 0.5rem;
}

.checkbox-group-legend {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9c9c9c;
    text-align: center;
    line-height: 1.125;
    margin-bottom: 1.25rem;
}

.checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.checkbox-input:checked + .checkbox-tile {
    border-color: #bc1525;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #bc1525;
    background: #f9e8ea;
}

.checkbox-input:checked + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: #bc1525;
    border-color: #bc1525;
}

.checkbox-input:checked + .checkbox-tile .checkbox-icon,
.checkbox-input:checked + .checkbox-tile .checkbox-label {
    color: #bc1525;
}

.checkbox-input:focus + .checkbox-tile {
    border-color: #bc1525;
    box-shadow: 0 0 4px #c9c9c9;
}

.checkbox-input:focus + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    border: 1px solid #f4f4f4;
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
}

.checkbox-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 3rem;
    height: 3rem;
    border: 1px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.checkbox-tile:hover {
    border-color: #bc1525;
}

.checkbox-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-icon {
    transition: 0.375s ease;
    color: #494949;
}

.checkbox-icon svg {
    width: 3rem;
    height: 3rem;
}

.checkbox-label {
    color: #707070;
    transition: 0.375s ease;
    text-align: center;
}

.for-vice-president {
    border: 1px solid #e3e3e3;
    background: #f4f4f4;
    padding: 25px 0px 10px 0px;
    border-radius: 5px;
}

.for-vice-president .pic-title {
    margin-bottom: 0px;
}

.progressbar {
    list-style: none;
    margin: auto;
    border-radius: 5px;
    padding-left: 0;
    overflow: hidden;
    margin-bottom: -10px;
}

.progressbar li {
    float: left;
    list-style: none;
    width: 50%;
    /* width: 33%; */
    background: #f4f4f4;
    padding: 10px;
    border: 1px solid #e3e3e3;
}

.progressbar li:first-child {
    border-radius: 5px 0 0 5px;
}

.progressbar li:last-child {
    border-radius: 0 5px 5px 0;
}

.progressbar li.active-progress {
    background: var(--red);
    color: var(--white);
}

.progressbar li.closed-progress {
    color: #c7c0c0;
}

.review-img img {
    width: 100%;
}

.text-sm2 {
    font-size: 13px;
}

.revireblock {
    position: relative;
}

.selected {
    width: 70px;
    position: absolute;
    left: 50%;
    margin-left: -95px;
    top: 10px;
}

.done-txt {
    font-size: 24px;
    margin-top: 40px;
    font-weight: 600;
    color: var(--red);
}

.responsiveline {
    display: none;
}

@media (max-width: 1300px) {
    .img-name {
        font-size: 14px;
    }
}

@media (max-width: 990px) {
    .partation {
        width: 50%;
    }

    .no-show {
        display: none;
    }

    .responsiveline {
        border-bottom: 1px solid #e3e3e3;
        margin: 45px 0;
    }

    .img-name {
    }

    .inner-container {
        width: 90%;
    }

    .ballot-res {
        margin-top: 25px;
    }

    .responsiveline {
        display: block;
    }
}

@media (max-width: 600px) {
    .inner-container {
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .inner-container {
        width: 100%;
        padding: 1.5rem !important;
    }

    .auth-wrapper {
        margin-top: 20px;
    }

    .btn {
        width: 100%;
    }

    .progressbar li {
        font-size: 14px;
        min-height: 63px;
    }
}
