:root {
    --light-grey: #909090;
    --black: #000000;
    --blue: #4C6FFF;
    --light-blue: #E5E4EF;
    --light-purple: #F9E7F7;
    --light-green: #ECFAEF;
    --green: #009245;
    --mid-green: #66CB9F;
    --orange: #FF5300;
    --border-radius: 10px;
    --box-shadow: 0px 3px 6px #cccccc;
    --border: 1px solid #A6A6A6;
    --outline: .1rem solid rgba(0, 0, 0, .1);
    --outline-hover: .2rem solid var(--black);
}


body {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-size: 14px;
    line-height: 22px;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    word-break: break-word;
}

/*Selection Color*/
::-moz-selection {
    background: #4C6FFF;
    color: #ffffff;
}

::selection {
    background: #4C6FFF;
    color: #ffffff;
}

a {
    color: #4C6FFF;
}

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

.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 36px;
    color: #000000;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 2px solid;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 6px;
    transition: all .2s linear;
    min-width: 150px;
    outline: none !important;
    box-shadow: none !important;
}

button:focus:not(:focus-visible),
button:focus,
.btn-primary:focus {
    outline: 0;
    box-shadow: none;
}

.btn-primary {
    background: #4C6FFF;
    color: #ffffff;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #0528b6;
    border-color: #0528b6;
}

.btn-secondary {
    background-color: #F2F1F6;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px #e4e4e4;
}

.btn-outline-primary {
    border: 1px solid #9F9F9F;
    color: #9F9F9F;
    line-height: 34px;
}

.btn-outline-primary:hover {
    color: #ffffff;
    background-color: #9F9F9F;
    border-color: #9F9F9F;
}

.btn-outline-secondary {
    border: 1px solid #4C6FFF;
    color: #4C6FFF;
    line-height: 34px;
}

.btn-outline-secondary:hover {
    color: #ffffff;
    background-color: #4C6FFF;
    border-color: #4C6FFF;
}

.btn-outline-danger {
    color: #dc3545;
    border: 1px solid #dc3545;
    line-height: 34px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Poppins', sans-serif;
    margin: 0px;
    padding: 0px;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1260px;
    width: 100%;
    padding: 0 15px;
}

section {
    padding: 60px 0;
}

/* Global CSS */

.tag {
    background-color: #ffffff26;
    border-radius: 30px;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 0 16px;
    line-height: 30px;
}

.blue-tag {
    background-color: #4c6fff2b;
    border-radius: 30px;
    color: #4C6FFF;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 0 16px;
    line-height: 30px;
}

/* Text Color Style Here */

.text-grey {
    color: #666666 !important;
}

.link-text {
    color: #F19E6A !important;
    text-decoration: underline;
}

.text-black {
    color: var(--black) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.text-light-green {
    color: var(--mid-green) !important;
}

/* BG Color Listing */

.light-blue-bg {
    background-color: var(--light-blue);
}

.light-purple-bg {
    background-color: var(--light-purple);
}

.light-green-bg {
    background-color: var(--light-green);
}

/* Checkbox Style Here */

.checkbox-btn input[type="checkbox"] {
    display: none;
}

.checkbox-btn label {
    color: #333333;
    font-size: 13px;
    position: relative;
    padding-left: 30px;
    line-height: 18px;
}

.checkbox-btn label .checkmark {
    position: absolute;
    border: 2px solid #E5E5E5;
    border-radius: 4px;
    left: 0;
    height: 18px;
    width: 18px;
    top: 0;
}

.checkbox-btn input[type="checkbox"]:checked+label .checkmark {
    background-color: #66CB9F;
    background-image: url(../images/tick-icon.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    border: 2px solid #66CB9F;
}

/* Dropdown Style */

.custom-dropdown {
    position: relative;
    display: block;
    width: 190px;
}

.custom-dropdown::after {
    content: "";
    background-color: #EDF1FF;
    background-image: url(../images/down-arrow.svg);
    background-position: center center;
    background-size: 12px;
    background-repeat: no-repeat;
    border-radius: 0 6px 6px 0;
    width: 34px;
    height: 38px;
    position: absolute;
    right: 1px;
    pointer-events: none;
    top: 1px;
}

section.study-material-section.pt-0 > .container {
    width: 100%;
    max-width: 100% !important;
}
