/* registration css */

#signUpForm {
    max-width: auto;
    background-color: #ffffff;
    margin: 40px auto;
    padding: 10px;
    box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
    border-radius: 12px;
}

#signUpForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: .9em;
}

#signUpForm .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
}

#signUpForm .form-header .stepIndicator.active {
    font-weight: 600;
}

#signUpForm .form-header .stepIndicator.finish {
    font-weight: 600;
    color: #009688;
}

#signUpForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #d5efed;
    border-radius: 50%;
    border: 3px solid #ecf5f4;
}

#signUpForm .form-header .stepIndicator.active::before {
    background-color: #a7ede8;
    border: 3px solid #d5f9f6;
}

#signUpForm .form-header .stepIndicator.finish::before {
    background-color: #009688;
    border: 3px solid #b7e1dd;
}

#signUpForm .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
}

#signUpForm .form-header .stepIndicator.active::after {
    background-color: #a7ede8;
}

#signUpForm .form-header .stepIndicator.finish::after {
    background-color: #009688;
}

#signUpForm .form-header .stepIndicator:last-child:after {
    display: none;
}


#signUpForm input:focus {
    border: 1px solid #009688;
    outline: 0;
}

#signUpForm input.invalid {
    border: 1px solid #ffaba5;
}

#signUpForm .step {
    display: none;
}

#signUpForm .form-footer {
    overflow: auto;
    gap: 20px;
}

#signUpForm .form-footer button {
    background-color: #f73c7c;
    border: 1px solid #fd6b71 !important;
    color: #ffffff;
    border: none;
    padding: 6px 25px;
    font-size: 1em;
    font-size: 22px;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin-top: 5px;
}

#signUpForm .form-footer button:hover {
    opacity: 0.8;
}

#signUpForm .form-footer #prevBtn {
    background-color: #fff;
    color: #f73c7c;
}

#signUpForm input[type='radio'] {
    width: 16px;
    margin-right: 5px;
}

#signUpForm input {
    padding: 12px 20px;
    width: 100%;
    font-size: 1em;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
}

.form-control,
#signUpForm input {
    color: #242424;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #bdbfc1;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* our team */
.our-team {
    padding: 20px 10px 0px;
    background: #ffffff;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    position: relative;
}

.our-team .pic {
    display: inline-block;
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.our-team .pic:before {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background: #1d6097;
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 0.2;
    transform: scale(3);
    transition: all 0.3s linear 0s;
}

.our-team:hover .pic:before {
    height: 100%;
}

.our-team .pic:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1d6097;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.our-team .pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
}

.our-team:hover .pic img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
}

.our-team .team-content {
    margin-bottom: 30px;
}

.our-team .title {
    font-size: 20px;
    font-weight: 700;
    color: #002f4c;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.our-team .post {
    display: block;
    font-size: 15px;
    color: #4e5052;

}

.our-team .social {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #eb1768;
    position: absolute;
    bottom: -100px;
    left: 0;
    transition: all 0.5s ease 0s;
}

.our-team:hover .social {
    bottom: 0;
}

.our-team .social li {
    display: inline-block;
}

.our-team .social li a {
    display: block;
    padding: 10px;
    font-size: 17px;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.our-team .social li a:hover {
    color: #eb1768;
    background: #f7f5ec;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }
}

/* agenda */

ul.ntScheduleTab {
    border-bottom: 1px solid #eee;
    position: relative;
}

ul.ntScheduleTab li a.active {
    color: #fff;
    border-color: #fd7102;
    background-color: #fc6d02;
}

ul.ntScheduleTab li a:hover {
    color: #fff;
    background: #1c5b91;
    border-color: #3974a2;
}

ul.ntScheduleTab li {
    margin-right: 5px;
}

ul.ntScheduleTab li a {
    padding: 10px 15px;
    display: block;
    border: 2px solid #4842e3;
    color: #4842e3;
    font-size: 18px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.ntTabContent {
    overflow: hidden;
    padding: 15px;
    background: #efefef !important;
    position: relative;
    background: #f7f9fb;
}

.ntTabContent .ntEvent {
    overflow: hidden;
}

.ntTabContent .ntEvent .ntEventTime {
    float: left;
    width: 25.57319%;
    text-align: right;
    padding-right: 16px;
    position: relative;
    line-height: 2.1em !important;
    font-size: 22px;
    font-weight: 700;
    color: #ed075c;
}

.ntTabContent .ntEvent .ntEventTime span {
    display: block;
    width: 11px;
    height: 11px;
    background-color: #ed075c;
    position: absolute;
    top: 17px;
    right: -6px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
}

.ntTabContent .ntEvent .tnEventInfo {
    float: left;
    width: 74.42681%;
    padding-left: 40px;
    border-left: 1px solid #ed075c;
}

.ntTabContent .ntEvent .ntEventTime,
.ntTabContent .ntEvent .tnEventInfo h3 {
    font-size: 17px;
    font-weight: 400;
    color: #4842e3;
    line-height: 28px;
}

.ntTabContent .ntEvent .tnEventInfo h3 {
    font-weight: 700;
    font-size: 17px;
    color: #333;
    margin-bottom: 0;
}

.ntTabContent .ntEvent .tnEventInfo .ntSocialIcons {
    display: block;
    width: 130px;
    margin: 0 auto;
}

.tnEventInfo .ntSocialIcons a {
    border-color: #ed075c;
    color: #ed075c;
}

.tnEventInfo .ntSocialIcons a a:active,
.tnEventInfo .ntSocialIcons a:focus,
.tnEventInfo .ntSocialIcons a:hover {
    border-color: #ed075c;
    background-color: #ed075c;
    color: #fff;
}

.ntTabContent .ntEvent hr {
    border-color: #eee;
}

.ntTabContent .ntEvent.extend span {
    width: 31px;
    height: 31px;
    top: 7px;
    right: -16px;
    line-height: 32px;
    cursor: pointer;
}

.ntTabContent .ntEvent.extend .tnSpeakerName {
    overflow: hidden;
    margin-bottom: 5px;
    line-height: 22px;
}

.ntTabContent .ntEvent.extend .tnSpeakerName .ntCaptionText {
    overflow: hidden;
    float: left;
}

.ntTabContent .ntEvent.extend .tnSpeakerName p {}

.ntTabContent .ntEvent.extend .tnSpeakerName strong {
    color: #4842e3;
    font-size: 18px;
    font-weight: 400;
}

.ntTabContent .ntEvent.extend .ntCaption {
    /* overflow: hidden;
    display: block; */
    background: #fff;
    padding: 15px 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease !important;
}

.ntTabContent .ntEvent.extend .ntCaption .ntImage {
    display: block;
    overflow: hidden;
    width: 100px;
    float: left;
    margin-right: 10px;
}

.ntTabContent .ntEvent.extend .ntCaption .ntImage img {
    border: 1px solid #eee;
    border-radius: 100px;
    width: auto;
    margin-bottom: 15px;
}

.ntTabContent .ntEvent.extend .ntCaptionText {
    width: 100%
}


.spk-details {
    display: none !important;
    /* transition: all 0.3s ease-in-out !important; */
    transform: translateY(-20px);
    transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}

.tnEventInfo:hover .spk-details {
    display: block !important;
    transform: translateY(0px);
}

.mar {
    margin-right: 15px;
    height: 80px;
    border: 1px solid #0000004f;
    padding: 10px;
    background: #fff;
    margin-bottom: 30px;
}

/* table fee */


.icofont-file-alt {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
}

.widget.widget-archive .widget-wrapper li a,
.widget.widget-category .widget-wrapper li a {
    color: #00103e;
    margin-bottom: 5px;
    padding: 12px 20px 12px 5px;
    border-radius: 5px;
    /* box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); */
    background: #d5d5d5;
}

.widget.widget-archive .widget-wrapper li a.active,
.widget.widget-archive .widget-wrapper li a:hover,
.widget.widget-category .widget-wrapper li a.active,
.widget.widget-category .widget-wrapper li a:hover {
    padding-left: 10px;
    color: #f64482;
}

.icofont-rounded-double-right {
    color: #005afe !important;
    font-size: 20px;
    font-weight: bold;
}

.authors .author-thumb {
    width: 100px;
    padding: 2px;
    text-align: center;
    border: 2px solid #fb9e53;
    border-radius: 10%;
}

.authors {
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
    box-shadow: 0 26px 58px 0 rgba(0, 0, 0, .22), 0 5px 14px 0 rgba(0, 0, 0, .18);
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    margin: 0px 0;
    background: #fff;
}

.authors .author-content {
    width: calc(100% - 117px);
    margin-top: 0;
    text-align: left;
}

.list-style li i {
    color: #001a9b;
}

.list-style li {
    color: #fa6803;
    font-weight: bold;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1336px;
    }

}

.table-head,
.table-head th {
    background:#1a76a6;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    font-size: 19px;

}

.table-1 tr td {
    text-align: center;
    vertical-align: middle;
    font-size: 16px;

}

.table tr:nth-child(even) {
    background-color: #ededed;
}

tr td span {
    color: red;
}

.list-payment li {
    padding: 3px 10px;
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    margin-right: 14px;
    font-size: 16px;
    margin-bottom: 4px;
    text-align: center;
    line-height: 23px;
    font-weight: bold;
}

.list-payment li i {
    color: #004568;
    font-size: 30px;
    margin-right: 10px;
    align-items: center;

}

.table {
    border-color: #1a4e68;
}

.bank-details {
    padding: 20px;
    background-color: #dbf0ff;
    border-radius: 10px 10px 10px 10px;
}

.bank-details h3 {
    background: #1a76a6;
    padding: 5px 5px;
    text-align: center;
    color: #fff;
}

.ul-style li {
    position: relative;
    line-height: 22px;
    font-size: 16px !important;
    color: #343434 !important;
    font-weight: 400 !important;
    /* font-family: "Poppins", sans-serif !important; */
    text-align: justify;
    padding: 0px 0px 0px 25px !important;
    margin-bottom: 10px;
}

.ul-style li:before {
    position: absolute;
    content: "\ec7c";
    left: 0px;
    color: #004568;
    font-size: 16px;
    padding-right: 20px;
    top: 1px;
    font-family: "icofont";
}

/* tab  */

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

/* .vertical-tab {
    font-family: 'Montserrat', sans-serif;
    display: table;
} */

.vertical-tab .nav-tabs {
    width: 27%;
    min-width: 27%;
    padding-left: 15px;
    border: none;
    vertical-align: top;
    display: table-cell;
}

.vertical-tab .nav-tabs li {
    float: none;
}

.vertical-tab .nav-tabs li a {
    color: #fff;
    background: #4B6584;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 10px 16px;
    margin: 0 0 10px 0;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0.3s;
}

/* .vertical-tab .nav-tabs li a:hover,
.vertical-tab .nav-tabs li.active a {
    color: #fff;
    background: #4B6584 !important;
    border: none;
} */

.vertical-tab .nav-tabs li.active a:hover,
.vertical-tab .nav-tabs li.active a {
    color: #fff;
}

.vertical-tab .nav-tabs li a:before {
    content: "";
    background: #1a419a;
    height: 100%;
    width: 50%;
    opacity: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
    clip-path: polygon(0 50%, 10% 100%, 100% 100%, 100% 0, 10% 0);
}

.vertical-tab .nav-tabs li.active a:before,
.vertical-tab .nav-tabs li a:hover:before {
    opacity: 1;
    width: calc(100% + 0px);
}

.vertical-tab .tab-content {
    color: #fff;
    background: #FA8231;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 23px;
    padding: 20px;
    display: table-cell;
}

.vertical-tab .tab-content h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 7px;
}

@media only screen and (max-width: 479px) {
    .vertical-tab .nav-tabs {
        width: 100%;
        display: block;
    }

    .vertical-tab .nav-tabs li a {
        padding: 15px 10px 14px;
    }

    .vertical-tab .tab-content {
        font-size: 14px;
        display: block;
    }
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ffffff !important;
    background-color:#fb6c02 !important;
    border-color: #dee2e6 #dee2e6 #fff;
}

.session-content {
    background: #ffe7ef;
    padding: 20px;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    right: -23px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -3;
    border-left: 22px solid #fb6c02;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

.sdg-section {
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px 10px;
}

.sdg-section img {
    width: 60px;
    height: auto;
    border-radius: 5px;
}

.sdg-section h6 {
    font-size: 16px;
    margin-left: 10px;
}

.sdg-heading {
    font-size: 18px;
    color: #ff0359;
    margin-bottom: 20px;
    text-align: center;
}

