:root {
    --sw-dark-blue: #354896;
    --sw-trq-light: #E5F4FD;
    --sw-yellow-dark: #FED777
}

main {
    color: var(--sw-dark-blue);
}

.trq-light-tooltip {
    --bs-tooltip-bg: var(--sw-trq-light);
    --bs-tooltip-color: #598EAD;
    --bs-tooltip-padding-x: 2rem;
    --bs-tooltip-padding-y: 1rem;
    /* --bs-tooltip-max-width: 250px; */
    --bs-tooltip-font-size: 16px;
    --bs-tooltip-arrow-width: 28px;
    --bs-tooltip-arrow-height: 14px;
    --bs-tooltip-opacity: 1 !important;
}

.outline-tooltip {
    background-color: white;
}

.outline-tooltip-arrow {
    background-color: white !important;
    border-top: 1px solid var(--sw-dark-blue) !important;
    border-right: 1px solid var(--sw-dark-blue) !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(45deg)!important;
}

.outline-tooltip-body {
    color: var(--sw-dark-blue);
    border: 1px solid var(--sw-dark-blue) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

.outline-tooltip-body .blue-link {
    font-weight: 600;
    text-decoration: underline;
  }

.outline-tooltip img {
    width: 17px;
}

.wide-tooltip .tooltip-inner{
    min-width: 320px;
    text-align: start;
}

.very-wide-tooltip .tooltip-inner{
    min-width: 520px;
    text-align: start;
}

.question-mark-button {
    width: 20px;
    height: 26px;
    background-image: url('/static/images/icons/question-mark-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.question-mark-button:hover {
    background-image: url('/static/images/icons/question-mark-fill-icon.svg');
}

.edu-frame {
    position: relative;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px 40px;
}

.form-element {
    background-color: #E5EDF2;
    border: none;
    outline: none;
    padding: 20px 15px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: var(--sw-dark-blue);
    width: 100%;
    resize: none;
}

#expectedStudents.form-element {
    width: 80px;
}


.form-element::placeholder{
    color:#9A9FB5;
    font-style: italic;
}

.blue-link, .blue-link:active {
    color: var(--sw-dark-blue);
    text-decoration: none;
}

.blue-link:hover {
    color: var(--sw-dark-blue);
    opacity: 0.8;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    width: fit-content;
    align-items: center;
}


.breadcrumbs .title {
    color: var(--sw-dark-blue);
    font-weight: 700;
    font-size: 26px;
    line-height: 28px;
    max-width: 500px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.info-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: start;
    padding: 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #7B6B69;
    background-color: rgb(254, 215, 119, 0.5);
}

.info-box.warning {
    background-color: #F4DDDB;
    color: #6C5C5B;
}

.info-box.warning a {
    color: #6C5C5B !important;
    text-decoration: underline;
}

.info-box .info-box-icon {
    background: url('/static/images/icons/info-box-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 47px;
    height: 47px;
    margin-top: 9px;
}

.info-box.warning .info-box-icon {
    background: url('/static/images/icons/warning-box-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 47px;
    height: 43px;
    margin-top: 0px;
}

.stats-box {
    background-color: #F1FAFF;
    border-bottom: #56B2C6 3px solid;
    padding: 23px 50px 23px 21px;
    position: relative;
}

.rtl .stats-box {
    padding: 23px 21px 23px 50px;
}

.stats-box .question-mark-button {
    position: absolute;
    right: 13px;
    top: 13px;
}

.rtl .stats-box .question-mark-button {
    right: unset;
    left: 13px;
}

#userAssignmentDetailsModal .question-mark-button {
    width: 16px;
    height: 20px;
}

.stats-box .stats-box-title {
    font-weight: 400;
    font-size: 16px;
}

#statUrl, #statAssignees {
    font-size: 36px;
    line-height: 38px;
}

.stats-box .stats-box-value {
    font-weight: 800;
    font-size: 36px;
    line-height: 38px;
}

.yellow-button {
	background-color: var(--sw-yellow-dark);
    opacity: 1;
	border:none;
	display:inline-block;
	cursor:pointer;
	color:var(--sw-dark-blue);
	font-size:17px;
	padding: 0.75rem 0.90rem 0.75rem 0.90rem;
    border-radius: 4px;
	text-decoration:none;
    user-select: none;
    white-space: nowrap;
    transition: all 0.3s ease-out;
}
.yellow-button:hover {
	background-color:#f9d67c;
    opacity: 1.1;
    color:var(--sw-dark-blue);
}
.yellow-button:active {
	position:relative;
	top:1px;
}

.yellow-button.disabled, .yellow-button:hover.disabled, .yellow-button:active.disabled {
	background-color:var(--sw-yellow-dark);
    border:1px solid var(--sw-yellow-dark);
    text-shadow:none;
    position: auto;
    top:0px;
    cursor: not-allowed;
    opacity: 0.4;
}

.pricing-bundle-card {
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: #F5F8FF;
    border-radius: 10px;
    border: 1px solid #DADEED;
    height: 87px;
    width: 378px;
    padding: 12px;
    cursor: pointer;
}

.pricing-bundle-card.selected {
    border: 2px solid #9EA8D0 !important;
    background-color: #EBEDF4;
    cursor: default;
}

.pricing-bundle-card:hover {
    border: 1px solid #6172B9;
}

.pricing-bundle-card-content {
    display: flex;
    flex-direction: column;
    align-self: center;
}

.pricing-bundle-card-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
}

.pricing-bundle-card-title .price {
    font-size: 26px
}

.pricing-bundle-card.selected .pricing-bundle-card-title {
    font-weight: 800 !important;
}

.pricing-bundle-card-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #6172B9;
}

.pricing-bundle-card .question-mark-button {
    position: absolute;
    right: 13px;
}

.radio-btn {
    background: url('/static/images/icons/radio-btn.svg') no-repeat;
    width: 27px;
    height: 27px;
}

.pricing-bundle-card.selected .radio-btn {
    background: url('/static/images/icons/radio-btn-selected.svg') no-repeat !important;
}

.bundles-desc-column {
    width: 350px;
    margin-left: 65px;
}

ul.all-bundles-include-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 17px;
    line-height: 26px;
}

ul.all-bundles-include-list li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #3F9EB2; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
}

.bundles-desc-column .trq-seperator {
    border-bottom: #3F9EB2 solid 3px;
    width: 84px;
    height: 1px;
}

.btn-gray {
    --bs-btn-color: var(--sw-dark-blue);
    --bs-btn-bg: #E5EDF2;
    --bs-btn-border-color: #E5EDF2;
    --bs-btn-hover-color: var(--sw-dark-blue);
    --bs-btn-hover-bg: #E5EDF2;
    --bs-btn-hover-border-color: #E5EDF2;
    --bs-btn-active-color: var(--sw-dark-blue);
    --bs-btn-active-bg: #E5EDF2;
    --bs-btn-active-border-color: #E5EDF2;
    padding: 20px 15px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: var(--sw-dark-blue);
    border-radius: 0px;
    text-align: left;
}

.rtl .btn-gray {
    text-align: right;
}

.btn-gray.dropdown-toggle::after {
    vertical-align: -0.1em;
    border-top: 0.7em solid;
    border-right: 0.6em solid transparent;
    border-left: 0.6em solid transparent;
    position: absolute;
    right: 19px;
    top: 25px;
}

.rtl .btn-gray.dropdown-toggle::after {
    right: auto;
    left: 19px;
}

.dropdown-item.btn-gray {
    background-color: #F5FBFF;
    border-bottom: var(--sw-dark-blue) solid 1px;
}

.dropdown-item.btn-gray:hover {
    background-color: #e4f2fb;
    color: var(--sw-dark-blue);
}

.gray-menu li:first-child {
    border-top: var(--sw-dark-blue) solid 1px;
}

.gray-menu {
    --bs-dropdown-padding-y: 0;
    --bs-dropdown-border-width: 0;
    margin-top: -2px!important;
}

.force-scroll-y {
    overflow-y: scroll;
    max-height: 200px;
}

.gray-menu::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

.gray-menu::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--sw-dark-blue);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

#assignmentLanguageLevel, #assignmentLanguageLevel .dropdown-menu {
    width: 270px
}

#assignmentLanguage, #assignmentLanguage .dropdown-menu {
    width: 226px
}

.checkbox-item {
    display: block;
    position: relative;
    padding-left: 26px;
    color: #354896;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

  /* Create a custom checkbox */
.checkmark {
    background-image: url('/static/images/icons/checkbox-not-selected.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
}

.checkbox-item input:checked ~ .checkmark {
    background-image: url('/static/images/icons/checkbox-selected.svg');
}

.checkbox-item:hover {
    opacity: 0.9;
}


#selectPassage, #selectPassage .dropdown-menu {
    width: 200px
}

.read-aloud-passage {
    background-color: white;
    color: #000;
    font-family: "El Messiri";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 41px;
}

.read-aloud-passage .pronunciation-error {
    display: inline-block;
    line-height: 1.3;
    padding: 0px 2px;
    margin: 0px -2px;
    position: relative;
}

.read-aloud-passage .pronunciation-error[data-type=Omission] {
    background-color: #FE6E63;
    color: white;
}

.read-aloud-passage .pronunciation-error[data-type=Mispronunciation] {
    background-color: #354896;
    color: white;
}

.read-aloud-passage-legend {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.read-aloud-passage-legend .legend-row {
    display: flex;
    align-items: center;
}

.read-aloud-passage-legend .legend-icon {
    width: 22px;
    height: 22px;
}

.read-aloud-passage-legend .legend-icon.omission {
    background-color: #FE6E63;
}

.read-aloud-passage-legend .legend-icon.mispronunciation {
    background-color: #354896;
}

#userAssignmentDetailsModal.offcanvas {
    transition: transform .6s cubic-bezier(0.01, 0.5, 0.48, 0.7);
}

.offcanvas-size-xl {
    --bs-offcanvas-width: min(95vw, 600px) !important;
}
.offcanvas-size-xxl {
    --bs-offcanvas-width: min(95vw, 1000px) !important;
}
.offcanvas-size-md { /* add Responsivenes to default offcanvas */
    --bs-offcanvas-width: min(95vw, 400px) !important;
}
.offcanvas-size-sm {
    --bs-offcanvas-width: min(95vw, 250px) !important;
}

.table-container {
    font-size: 15px;
}

.table-header {
    font-weight: 600;
}
.table-row-odd {
    background-color: #DDEBF4;
}
.table-row-even {
    background-color: #CCE5F6;
}
.table-cell {
    padding: 10px;
}

@media (min-width: 768px) {
    .edu-frame-background {
        right: -10px;
        bottom: -10px;
    }
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 896px;
    }

    .container {
        max-width: 963px;
    }
}

@media (min-width: 1200px) {

    .container {
        max-width: 1060px;
    }
}
