@import url('https://fonts.googleapis.com/css2?family=Dawning+of+a+New+Day&display=swap');

.order-from-page{
    padding-top: 49px;
    padding-bottom: 85px;
    /*background-color: rgba(1, 80, 176, 0.05);*/
}

.section-heading{
    margin-bottom: 46px;
}
.section-heading>*:last-child{
    margin-bottom: 0;
}
.section-heading h1{
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.5px;
    color: #0150B0;
    margin-bottom: 20px;
}
.section-heading p{
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
}

.field-set{
    margin-bottom: 23px;
}
.field-set-heading{
    margin-bottom: 20px;
}
.field-set-heading>*:last-child{
    margin-bottom: 0;
}
.field-set-heading h2{
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #0150B0;
}
/*.form-control{
    -webkit-border-image: -webkit-gradient(linear, left top, left bottom, from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 21 30 30 21 repeat repeat;
}*/

.input-label{
    display: block;
    margin: 0 0 6px;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}
.input-field{
    display: block;
    position: relative;
    /*margin-bottom: 25px;*/
}
.input-field .input{
    display: block;
    width: 100%;
    border: 1px solid rgba(1, 80, 176, 0.1);
    color: #191919;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 11px 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: none !important;
    outline: none !important;
    font-weight: 500;
    min-height: 48px;
}
.input-field .input::placeholder{
    color: rgba(25, 25, 25, 0.33);
}
.input-field .input:focus{
    background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(to bottom, #0150B0, #36A5E0) border-box;
}
.input-field .input:read-only,
.input-field .input:disabled {
    background: #EEEEEE;
}
.input-field.has-error .input{
    border-color: #EA2B2B;
    background: #FFE8E8 !important;
    padding-right: 40px;
}
.input-field.has-error .input::placeholder{
    color: #191919;
}
.input-field.has-error label{
    display: block;
    color: #EA2B2B;
    margin: 5px 0 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.12;
    padding: 0;
}
.input-field.has-error:after{
    content: '';
    background: url('../img/order-form/icon-error-info.png') no-repeat center;
    background-size: auto;
    width: 23px;
    height: 23px;
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 9;
}

.add-on-box{
    display: block;
    width: 100%;
    border-radius: 28px;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 0 12px 30px rgba(140, 193, 255, 0.1);
    margin-bottom: 15px;
}
.add-on-box.popular{
    background: linear-gradient(180deg, #0150B0 0%, #36A5E0 100%);
    color: #fff;
}
.add-on-box.popular .heading h3{
    color: #fff;
}
.add-on-box.popular .icon-wrapper{
    background-color: #fff;
}
.add-on-box .content{
    display: flex;
}

.add-on-box .content div{
    flex: 0 1 auto;
}
.add-on-box .content .icon{
    margin-right: 20px;
}
.add-on-box .icon-wrapper{
    background-color: #F3F7FE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    width: 87px;
    height: 87px;
}
.add-on-box .icon-wrapper img{
    display: block;
    max-font-size: 100%;
    height: auto;
}

.add-on-box .heading h3{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #191919;
}
.add-on-box .heading>*:last-child{
    margin-bottom: 0;
}

.add-on-box .action{
    text-align: right;
}
.add-on-box .action .pop-pill{
    display: flex;
    width: 93px;
    height: 38px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    color: #0150B0;
    font-size: 14px;
    font-weight: bold;
    border-radius: 30px;
    margin-bottom: 15px;
}
.radiocheck-wrapper{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.radiocheck-wrapper input{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 9;
    cursor: pointer;
}
.radiocheck-wrapper span{
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: 1px solid #0150B0;
}
.add-on-box.popular .radiocheck-wrapper span{
    border-color: #fff;
}
.radiocheck-wrapper input:checked ~ span{
    background: linear-gradient(180deg, #0150B0 0%, #36A5E0 100%);
    border-color: transparent;
}
.radiocheck-wrapper input:checked ~ span:after{
    content: '';
    background: url("../img/order-form/icon-check.png") no-repeat center;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.add-on-box .extra{
    padding-top: 30px;
    display: none;
}
.add-on-box.input-checked .extra{
    display: block;
}

.add-on-box .extra table{
    width: 100%;
}
.add-on-box .extra tr td{
    padding: 20px 10px;
    border-top: 1px solid rgba(0, 101, 242, 0.1);
}
.add-on-box .extra tr th{
    padding: 7px 10px;
    font-size: 16px;
    font-weight: bold;
}
.add-on-box .extra tr td:first-child,
.add-on-box .extra tr th:first-child{
    padding-left: 0;
}
.add-on-box .extra tr td:last-child,
.add-on-box .extra tr th:last-child{
    text-align: right;
    padding-right: 0;
}
.add-on-box .extra .input-field{
    margin-bottom: 0;
    width: 98px;
}
.add-on-box .extra h4{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}
.add-on-box .extra p{
    margin-bottom: 0;
}
.add-on-box .extra .table-head{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
}
.cart-wrapper{
    position: sticky;
    top: 200px;
}

.cart-box{
    display: block;
    width: 100%;
    border-radius: 28px;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 0 12px 30px rgba(140, 193, 255, 0.1);
    margin-bottom: 15px;
}
.cart-box .detail-table{
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    width: 100%;
    margin-bottom: 25px;
}
.cart-box .detail-table strong{
    font-weight: bold;
}
.cart-box .detail-table tr td{
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid rgba(0, 101, 242, 0.1);
}
.cart-box .detail-table tr td:last-child{
    text-align: right;
}
.cart-box .detail-table tr:first-child td{
    border-top: 0;
    padding-top: 0;
}
.cart-box .detail-table tr:last-child td{
    padding-bottom: 0;
}

.totals {
    margin-bottom:  22px;
}

.totals>div{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
}
.totals>div div:last-child{
    margin-left: auto;
    margin-right: 0;
}

.totals .due{
    background: linear-gradient(180deg, #0150B0 0%, #36A5E0 100%);
    border-radius: 12px;
    color: #fff;
    position: relative;
    z-index: 9;
}
.totals .monthly{
    background: #F2F6FB;
    padding-top: 30px;
    margin-top: -15px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.button{
    font-size: 16px;
    font-weight: bold;
    background: #0150B0;
    color: #fff;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 11px 20px;
    border-radius: 100px;
    border: 0;
}


.hero-4{
    padding-top: 80px;
    padding-bottom: 75px;
    background-color: #0150B0;
    color: #fff;
}
.hero-4 h1{
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
}
.hero-4 p{
    font-size: 56px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 30px;
}

.product-about.about .card-body{
    padding-top: 20px;
}
.product-about.about .card{
    max-width: 262px;
    width: 100%;
}
.product-about.about h2{
    max-width: 785px;
    margin-left: auto;
    margin-right: auto;
}
.product-about.about p{
    max-width: 655px;
    margin-left: auto;
    margin-right: auto;
}
.highlight__form.bg-solid{
    background: #0150B0;
}

.highlight__item-image img{
    width: 100%;
    height: auto;
}

.service-cta{
    position: relative;
    background: #fff;
    padding-top: 100px;
}
.service-cta .hero__float{
    max-width: 851px;
    margin-left: auto;
    margin-right: auto;
    background: #0150B0;
    border-radius: 28px;
}
.service-cta .hero__float-box{
    position: static;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
}
.service-cta .hero__float-header h4{
    color: #fff;
}

.pricing-banner{
    padding-top: 60px;
    padding-bottom: 60px;
}
.pricing-banner .address{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #191919;
}
.pricing-banner .address a{
    text-decoration: underline !important;
    margin-left: 10px;
}
.pricing-banner h1{
    font-size: 56px;
    line-height: 60px;
    font-weight: bold;
    margin-bottom: 21px;
}
.pricing-banner p{
    font-size: 18px;
    max-width: 515px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-banner .banner-heading{
    margin-bottom: 37px;
}

.pricing-container{
    max-width: 1130px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-section {
    display: flex;
    flex-flow: row wrap;
    margin-left: -4px;
    margin-right: -4px;
    justify-content: center;
}
@media(min-width: 1200px) {
    .pricing-section {
         flex-flow: row;
    }
}

.pricing-section .pricing-col{
    padding-left: 4px;
    padding-right: 4px;
    flex: 0 1 100%;
    width: 100%;
    max-width: 100%;
}
.pricing-inner{
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.pricing-inner.popular:before{
    content: '';
    position: absolute;
    z-index: 1;
    background: linear-gradient(180deg, #0150B0 0%, #36A5E0 100%);
    box-shadow: 0 0 2px rgba(0, 101, 242, 0.1);
    border-radius: 28px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pricing-inner.popular .pricing-box{
    border-radius: 0;
    background: none;
    color: #fff;
}

.pricing-inner{
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-box{
    position: relative;
    padding: 30px 26px;
    z-index: 9;
    background: #fff;
    border-radius: 28px;
    text-align: center;
}
.pricing-box .price-name{
    font-size: 17px; /*20px;*/
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}
.pricing-box .price{
    font-size: 42px; /*56px; 50px*/
    line-height: 60px;
    color: #0150B0;
    font-weight: bold;
    margin-bottom: 20px;
}
.pricing-box .price sub{
    font-weight: normal;
    bottom: 0 !important;
}
.pricing-inner.popular .pricing-box .price{
    color: #fff;
}

.term-options{
    position: relative;
    margin-bottom: 16px;
}
.term-options button{
    display: flex;
    width: 100%;
    align-items: center;
    height: 50px;
    border-radius: 10px;
    border: 0;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    background: #F2F6FB;
    color: #191919;
    font-size: 16px;
}
.term-options button:after{
    content: '';
    position: absolute;
    top: 17px;
    right: 12px;
    background: url('../img/pricing/icon-angle-down.svg') no-repeat center;
    background-size: auto;
    width: 18px;
    height: 18px;
}

.term-options ul{
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    background: #F2F6FB;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    color: #191919;
    font-size: 16px;
    list-style: none;
    padding: 0 0 10px;
    margin: 0;
}
.term-options ul li{
    position: relative;
}
.term-options ul li label{
    display: block;
    width: 100%;
    padding: 7px 20px;
    cursor: pointer;
}
.term-options ul li.selected label{
    background-color: #0150B0;
    color: #fff;
}
.term-options ul li input{
    position: absolute;
    z-index: -10;
    left: -100%;
    opacity: 0;
}
.term-options.open ul{
    display: block;
}
.term-options.open button{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.pricing-box .feature{
    margin-bottom: 16px;
}
.pricing-box .desc{
    font-size: 14px;
    line-height: 1.12;
    letter-spacing: 0.01em;
    min-height: 48px;
}

.pricing-inner.popular .term-options button{
    background-color: #fff;
}
.pricing-inner.popular .term-options ul{
    background-color: #fff;
}

.pricing-box .button{
    color: #fff !important;
}

.pricing-box .action{
    padding-top: 40px;
}

.btn{
    height: auto;
    padding-top: 11px;
    padding-bottom: 11px;
}

.text-page {
    padding-bottom: 0 !important;
}

.text-page-content > table,
.text-page-content > p,
.text-page-content > ol,
.text-page-content > ul {
    margin-top: 20px;
}

.text-page-content > figure,
.text-page-content > video,
.text-page-content > hr,
.text-page-content > img,
.text-page-content > strong,
.text-page-content > h1,
.text-page-content > h3,
.text-page-content > table,
.text-page-content > ul,
.text-page-content > ol,
.text-page-content > div.row,
.text-page-content > table,
.resume-form {
    max-width: 655px;
    margin-left: auto;
    margin-right: auto;
}

.service-class {
    margin-top: 30px;
}

.service-class-info {
    font-size: 16px;
    margin-bottom: -30px;
}

.hidden,
div.alert-success > button,
.form-field-error-label,
#step-2,
#step-3,
#voicenet-summary,
#static-ip-summary,
#airnet-summary {
    display: none;
}

.responsiv-uploader-fileupload.style-file-multi.is-populated .upload-files-container {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: none;
    border-bottom: none;
}
.responsiv-uploader-fileupload.style-file-multi .upload-object {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: none;
    border-bottom: none;
    margin-bottom: 10px;
}
.responsiv-uploader-fileupload.style-file-multi div.upload-object:hover {
    background: #EEEEEE !important;
    border-radius: 12px;
    border: none;
    border-bottom: none;
    margin-bottom: 10px;
}
.responsiv-uploader-fileupload.style-file-multi .upload-object h4,
.responsiv-uploader-fileupload.style-file-multi .upload-object:hover h4,
.responsiv-uploader-fileupload.style-file-multi .upload-object .meta .upload-remove-button,
.responsiv-uploader-fileupload.style-file-multi .upload-object:hover .meta .upload-remove-button {
    color: #000000 !important;
}
select.form-control {
    appearance: revert;
}

.job-list {
    padding: 0 36px 0 36px;
}

.contact__wrapper label,
.footer__subscribe-form label {
    display: none;
}

.input-field.has-error label {
    display: none;
}

.navi-bar__contact-number a {
    color: #0150B0;
}

.contact__wrapper-content a,
.announcement a {
    color: #FFFFFF;
}

/* Begin changes for Marty */
.hero-2-alt {
  background: url('/storage/app/media/background-7-logo-3.png') no-repeat center !important;
  background-size: cover !important;
}

@media (max-width: 768px) {
  .hero-2-alt {
    background: #0150b0 !important;
  }
}

.blur {
  backdrop-filter: blur(2px);
}
.hero-4 img.img-fluid {
    display: none;
}
.hero-4 {
    padding: 70px 0 0 0 !important;
}
.hero-2,
.hero-2 .hero__content {
    min-height: 390px;
    background-image: radial-gradient(rgba(7, 32, 68, 0.5) 45%, transparent, transparent);
}

@media(max-width: 767px) {
    .hero-2,
    .hero-2 .hero__content {
        min-height: 300px;
    }
    .hero-4 {
        padding: 30px 0 0 0 !important;
    }
    section.about.section {
        padding-top: 140px;
    }
}

@media(max-width: 575px) {
    section.about.section {
        padding-top: 230px;
    }
}


@media(max-width: 450px) {
    section.about.section {
        padding-top: 120px;
    }
}

section.section {
    padding-top: 25px;
    padding-bottom: 25px;
}

@media(min-width: 768px) {
    section.about.section {
        padding-top: 25px;
        padding-bottom: 0;
    }
}

section.text-page {
    background-color: #FFF;
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.section .card {
    border: 3px solid #DDDDDD;
}

.section .card:hover {
    border: 3px solid #0a53be;;
}

.product-about.about .card {
    border: none;
}

.hero__title {
    font-size: 2.5rem;
}

.navi-bar__contact-number {
    font-size: 26px;
}

.navbar-brand img {
    width: 200px;
}

.hero__float-subtext {
    color: #777777;
    font-size: 12px;
    padding-top: 10px;
}

div.navi-bar {
    padding-top: 0;
    padding-bottom: 0;
}

div.highlight__item {
    margin-bottom: 25px;
}

.footer {
    padding-top: 75px;
}

.section .card-body {
    padding: 15px 15px 13px 15px;
}

.section .card .icon-wrapper {
    margin-bottom: -15px;
}

.section .card .icon-wrapper {
    padding: 18px 15px 0;
}

.section__header {
    padding-bottom: 30px;
}

.contact__wrapper {
    padding: 30px 75px;
}

.hero__text_wrapper {
    border-radius: 28px;
    padding: 8px 20px;
    /*background-color: rgba(7, 32, 68, 0.5);*/
    background-image: radial-gradient(rgba(7, 32, 68, 0.5) 45%, transparent, transparent);
}

.nav-link:hover {
    text-decoration: underline;
}

li.nav-item.active {
    border-bottom: 3px solid #0150B0;
}

section.about.section.product-about {
    padding-top: 15px;
}

.hero-4 p {
    margin-bottom: 20px;
}

.hero-4 h1 {
    margin-bottom: 8px;
}

.hero__title {
    line-height: 50px;
    margin-bottom: 15px;
}

.section__header {
    padding-bottom: 0;
}

div.section-content {
    margin-top: 25px;
}

.footer {
    padding-top: 25px;
}

.input-field .input {
    margin-bottom: 20px !important;
}

section.about.section.product-about.text-page {
    /*margin-bottom: 30px;*/
}

.highlight__form > div > div > div.highlight__item-image {
    background-image: url('/storage/app/media/uploaded-files/media-form-left.jpg');
    height: 350px;
    background-size: cover;
}

.highlight__form > div > div > div.highlight__item-image > img {
    /*display: none;*/
}

.section__content {
    margin-top: 15px
}

section.package.section {
    padding-bottom: 5px;
}

.footer__content {
    padding-bottom: 20px;
}

/* End changes for Marty */

.announcement {
    font-weight: 500;
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    letter-spacing: 0.1px;
    color: #ffffff;
    margin-top: 7px;
}

.resume-form > form > div.form-group:nth-of-type(3) {
    margin-top: 10px;
}

.resume-form > form > div.form-group,
.resume-form > h4 {
    margin-bottom: 10px;
}

.resume-form label {
    font-weight: bold;
}

.custom-form,
.highlight__item-content > .row > .col-md-3 {
    white-space: nowrap;
}

.highlight__item-content .btn-wrapper {
    margin-top: 20px;
}

.table-proposal tr.subtotal {
    font-weight: bold;
}

.table-proposal tr.subtotal > td:nth-of-type(1),
.table-proposal > tfoot th:nth-of-type(1),
.table-proposal-gt > tfoot th:nth-of-type(1) {
    text-align: right;
    padding-right: 50px;
}

.table-proposal tr.subtotal > td:nth-of-type(2),
.table-proposal > tfoot th:nth-of-type(2),
.table-proposal tr.subtotal > td:nth-of-type(3),
.table-proposal > tfoot th:nth-of-type(3),
.table-proposal tr.subtotal > td:nth-of-type(4),
.table-proposal > tfoot th:nth-of-type(4),
.table-proposal-gt > tfoot th:nth-of-type(2) {
    width: 125px;
}

.table-proposal > tfoot,
.table-proposal-gt > tfoot {
    font-size: 20px;
    border-color: #FFF;
    text-transform: capitalize;
}

.table-proposal,
.table-proposal-gt {
    margin-top: 25px;
    margin-bottom: 25px;
}

#proposal-buttons {
    visibility: hidden;
}

#proposal-buttons > div {
    text-align: center;
}

.proposal-instructions {
    margin-top: 40px;
}

.proposal-instructions > p {
    max-width: 100%;
}

#proposal-ccauth {
    display: none;
}

.proposal-exp-div {
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
}

.proposal-signature {
    font-family: 'Dawning of a New Day', cursive;
    font-size: 30px;
    padding-left: 20px;
    border-width: 0 0 1px 0;
    border-radius: 0;
    color: darkblue;
}

.proposal-signature-label {
    font-size: 13px;
    color: #666;
}

.container-proposal h4 {
    margin-bottom: -10px;
    text-transform: capitalize;
}


@media(min-width: 992px) {
    .highlight__item.img-last .highlight__item-content{
        padding-right: 100px;
    }
    .highlight__item.text-last .highlight__item-content{
        padding-left: 100px;
    }
    .pricing-section .pricing-col{
        flex: 0 1 25%;
        width: 25%;
        max-width: 25%;
    }
}

@media(max-width: 991px){
    .pricing-inner{
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media(min-width: 767px) and (max-width: 991px){
    .pricing-section .pricing-col{
        flex: 0 1 50%;
        width: 50%;
        max-width: 50%;
    }
}

@media(min-width: 768px){
    .add-on-box .action{
        order: 9;
    }
    .add-on-box .heading{
        margin-right: 20px;
    }
    .add-on-box .extra .table-head{
        display: none;
    }
}
@media (max-width: 767px){
    .add-on-box .content{
        flex-flow: row wrap;
    }
    .add-on-box .action{
        margin-left: auto;
        margin-right: 0;
    }
    .add-on-box .heading{
        padding-top: 20px;
    }

    .add-on-box .extra thead{
        display: none;
    }
    .add-on-box .extra table tr td:first-child{
        border-top: 6px solid rgba(0, 101, 242, 0.1);
    }
    .add-on-box .extra table tr td{
        display: block;
        width: 100%;
        text-align: left !important;
        padding-left: 0;
        padding-right: 0;
    }


    .hero-4 p{
        font-size: 39px;
        line-height: 1.4;
    }
}

/* Black Friday widget */
button.buZvHj {
  width: 22px !important;
  height: 22px !important;
}

div.flyer > a > img {
    width: 100%;
    border: 1px solid #d6d6d6;
    padding: 5px;
}

div.flyer > a > p {
    background-color: #2f97cf;
    color: #FFF;
    padding: 5px 0 8px 5px;
    min-height: 25px;
    text-align: center;
    margin-top: 7px;
}

div.flyer > a > div {
    color: #2f97cf;
    margin-top: 7px;
    text-align: center;
}

div.row.flyers {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    margin-top: 20px;
}
.has-error .upload-button {
    background-color: #dc3545;
}
.text-page-content {
    padding-top: 15px;
}
ul.post-list {
    list-style-type: none; /* Removes bullet points */
    padding: 0;            /* Removes padding */
    margin: 0;             /* Removes margin */
}

ul.post-list li {
    padding: 20px 0;            /* Removes padding from each <li> */
    border-bottom: 1px solid #ccc; /* Adds a horizontal line between items */
    margin: 0;             /* Ensures no margin around <li> */
}

ul.post-list li:last-child {
    border-bottom: none;   /* Removes the border from the last <li> */
}
@media(max-width: 991px) {
    iframe#makepayment {
         height: 1200px !important;
    }
}
summary {
    background: #0d6efd;
    box-shadow: 0px 12px 30px rgba(140, 193, 255, 0.1);
    border-radius: 28px;
    cursor: pointer;
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.1px;
    padding: .5rem 1rem;
    display: inline-block;
    text-decoration: none;
}
details {
    text-align: center;
}
details > div {
    text-align: left;
}

div#socials svg {
    height: 25px;
}
div.container > ul.pagination {
	justify-content: center;
}

div.container > ul.pagination > li {
	margin: 5px;
    padding: 5px 10px;
    border: 1px solid gray;
    border-radius: 5px;
}
ul.post-list > li > p.info {
	font-size: small;
}
