@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,500&display=swap");
@font-face {
  font-family: "ianawebfont";
  src: url("../fonts/ianawebfont.ttf") format("truetype"), url("../fonts/ianawebfont.woff") format("woff"), url("../fonts/ianawebfont.svg#iana") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=iana-], [class*=" iana-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ianawebfont";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iana-g-earth:before {
  content: "\e900";
}

.iana-lock:before {
  content: "\e901";
}

.iana-cost-effective:before {
  content: "\e902";
}

.iana-service:before {
  content: "\e903";
}

.iana-lcoation:before {
  content: "\e905";
}

/*------   Table of Contents ------

 01- Reset Styles

----------------------------*/
/*------    Reset Styles   ------*/
* {
  margin: 0;
  padding: 0;
}

/*
    1rem = 16px 
    100% =  16px  default font size

    10px default font size

    1px = 6.25%

    10/16 = 625 * 100 = 62.5%

*/
html {
  font-size: 62.5%;
}

html,
body {
  height: 100%;
}

body {
  background-color: #ffffff;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 400;
  color: #9b9b9b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: #52b967;
  color: #ffffff;
}

*,
:active,
:focus {
  outline: none;
}

ol,
ul {
  list-style: none;
}

button {
  border: none;
}

blockquote,
q {
  quotes: none;
}

textarea {
  resize: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

.mr-30 {
  margin-right: 30px;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  html {
    font-size: 55.5%;
  }
}
/*------------------------------*\
    BUTTONS
\*--------------------------*/
.btn {
  text-transform: capitalize;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  width: 170px;
  height: 50px;
  line-height: 48px;
  border-radius: 3px;
  text-align: center;
  padding: 0;
  letter-spacing: 0.4px;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:focus, .btn.active, .btn:active {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.btn-block {
  width: 100%;
}

/* Button Primary */
.btn-primary {
  background-color: #52b967;
  color: #ffffff;
  border: 2px solid #52b967;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  background-color: transparent;
  color: #52b967;
}
.btn-primary.btn-hover2:active, .btn-primary.btn-hover2:focus, .btn-primary.btn-hover2:hover {
  background-color: #ffffff;
  color: #52b967;
  border-color: #ffffff;
}
.btn-primary.btn-hover3:active, .btn-primary.btn-hover3:focus, .btn-primary.btn-hover3:hover {
  background-color: #121c45;
  color: #ffffff;
  border-color: #121c45;
}

/* Button Secondary*/
.btn-secondary {
  background-color: #05103b;
  color: #ffffff;
  border: 2px solid #05103b;
}
.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  background-color: #52b967;
  color: #ffffff;
  border-color: #52b967;
}
.btn-secondary.btn-hover2:active, .btn-secondary.btn-hover2:focus, .btn-secondary.btn-hover2:hover {
  background-color: #ffffff;
  color: #121c45;
  border-color: #ffffff;
}

/* Button White */
.btn-white {
  background-color: #ffffff;
  color: #121c45;
  border: 2px solid #ffffff;
}
.btn-white:active, .btn-white:focus, .btn-white:hover {
  background-color: #52b967;
  color: #ffffff;
  border-color: #52b967;
}
.btn-white.btn-hover2:active, .btn-white.btn-hover2:focus, .btn-white.btn-hover2:hover {
  background-color: #121c45;
  color: #ffffff;
  border-color: #121c45;
}
.btn-white.btn-secondary {
  color: #121c45;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn-white.btn-secondary:active, .btn-white.btn-secondary:focus, .btn-white.btn-secondary:hover {
  color: #ffffff;
  background-color: #52b967;
  border-color: #52b967;
}

.btn-rounded {
  border-radius: 50px;
}

/* Button Link */
.btn-link {
  background-color: transparent;
  border-color: transparent;
  width: auto;
  height: auto;
  line-height: 1;
  border: none;
}
.btn-link.btn-primary {
  color: #52b967;
}
.btn-link.btn-primary:active, .btn-link.btn-primary:focus, .btn-link.btn-primary:hover {
  color: #121c45;
  background-color: transparent;
  border-color: transparent;
}
.btn-link.btn-secondary {
  color: #121c45;
}
.btn-link.btn-secondary:active, .btn-link.btn-secondary:focus, .btn-link.btn-secondary:hover {
  color: #52b967;
  background-color: transparent;
  border-color: transparent;
}
.btn-link.btn-white {
  color: #ffffff;
}
.btn-link.btn-white:active, .btn-link.btn-white:focus, .btn-link.btn-white:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: transparent;
}

/* Button Bordered */
.btn-bordered {
  background-color: transparent;
}
.btn-bordered.btn-primary {
  color: #52b967;
  border-color: #52b967;
}
.btn-bordered.btn-primary:active, .btn-bordered.btn-primary:focus, .btn-bordered.btn-primary:hover {
  color: #ffffff;
  background-color: #52b967;
  border-color: #52b967;
}
.btn-bordered.btn-secondary {
  color: #121c45;
  border-color: #121c45;
}
.btn-bordered.btn-secondary:active, .btn-bordered.btn-secondary:focus, .btn-bordered.btn-secondary:hover {
  color: #ffffff;
  background-color: #121c45;
  border-color: #121c45;
}
.btn-bordered.btn-white {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-bordered.btn-white:active, .btn-bordered.btn-white:focus, .btn-bordered.btn-white:hover {
  color: #52b967;
  background-color: #ffffff;
  border-color: #ffffff;
}

.btn-video.popup-video {
  padding-left: 50px;
  color: #ffffff;
}
.btn-video.popup-video .video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.btn-video-lg.popup-video {
  padding-left: 100px;
  width: 200px;
  height: 75px;
  line-height: 75px;
}
.btn-video-lg.popup-video .video-player {
  width: 75px;
  height: 75px;
  line-height: 75px;
}
.btn-video-lg.popup-video .video-btn-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  display: inline-block;
  margin-top: 10px;
}

.btn-lg {
  width: 220px;
}

.btn-auto {
  width: auto;
  padding: 0 20px;
}

.btn-underlined {
  padding-bottom: 5px;
}
.btn-underlined:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #52b967;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-white.btn-underlined:after {
  background-color: #ffffff;
}

.btn-white.btn-underlined:hover {
  color: #121c45;
}
.btn-white.btn-underlined:hover:after {
  background-color: #121c45;
}

.btn span + i {
  margin-left: 6px;
}

.popup-video {
  text-align: center;
  position: absolute;
  z-index: 1;
  right: 0;
  top: -116px;
  bottom: 0;
  width: 200px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  z-index: 1000;
}
.popup-video .video-player {
  font-size: 18px;
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 50%;
  background-color: #52b967;
  color: #ffffff;
  position: relative;
  display: inline-block;
}
.popup-video .video-player-animation {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  border: 2px solid #52b967;
  border-radius: 50%;
  -webkit-animation: pulsing 3s linear 0s infinite;
  -moz-animation: pulsing 3s linear 0s infinite;
  -ms-animation: pulsing 3s linear 0s infinite;
  -o-animation: pulsing 3s linear 0s infinite;
  animation: pulsing 3s linear 0s infinite;
}
.popup-video .video-player-animation-2 {
  animation-delay: 1s;
}
.popup-video .video-player-animation-3 {
  animation-delay: 1.8s;
}
.popup-video .video-player-title {
  text-transform: uppercase;
  color: #121c45;
  font-size: 13px;
  font-weight: 700;
  padding-top: 20px;
  margin-bottom: 0;
  line-height: 1;
}
.popup-video:hover .video-player-animation {
  opacity: 0;
  animation-play-state: paused;
}

.video-btn-white .video-player {
  background-color: #ffffff;
  color: #52b967;
}
.video-btn-white .video-player-animation {
  border-color: #ffffff;
}

.video-btn-right-center {
  position: absolute;
  top: 50%;
  right: -163px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.log_container {
  background-color: whitesmoke;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  overflow: hidden;
}
.log_container .login_center {
  width: 100% !important;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.log_container .login_center .login_box {
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.log_container .login_center .login_box .iana_logo {
  text-align: center;
  padding: 10px;
  margin-bottom: 15px;
}
.log_container .login_center .login_box .iana_logo img {
  max-width: 75%;
}
.log_container .login_center .login_box .login_form {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 35px 35px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px !important;
  border: none !important;
}
.log_container .login_center .login_box .login_form form .lable_text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2rem;
  color: #212529;
  text-align: left;
  margin-bottom: 6px;
}
.log_container .login_center .login_box .login_form form .form-control {
  border: 1px solid #dadce0 !important;
  height: 4.5rem;
  font-size: 1.4rem;
  color: #2b2b2b !important;
  font-weight: 500;
  padding: 0.65rem 1.2rem;
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 5px;
}
.log_container .login_center .login_box .login_form .login_title {
  padding: 0;
  margin: 0;
}
.log_container .login_center .login_box .login_form .login_title h4 {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 2.5rem;
  color: #2b2b2b;
}
.log_container .login_center .login_box .login_form .login_title p {
  margin-bottom: 30px;
  font-size: 14px;
  color: #898989;
  padding: 0;
  line-height: 18px;
}
.log_container .login_center .login_box .b_link {
  text-decoration: none;
  margin: 20px 5px;
  font-weight: 400;
  color: #5e5d5d;
  font-size: 13px;
}
.log_container .login_center .login_box .b_link i {
  font-weight: normal !important;
  font-size: 12px;
  margin-right: 3px;
  color: #5e5d5d;
  max-height: 15px;
  min-height: 15px;
  height: 15px;
  line-height: 15px;
}
.log_container .login_center .login_box .login-btn {
  width: 100%;
  padding: 5px 10px !important;
  height: 38px;
  line-height: 25px;
  border-radius: 4px;
}
.error-text {
  width: 100%;
margin-top: 0.25rem;
font-size: 0.875em;
color: #dc3545;
}
.text-publish-cls {
  color: green;
}

.search_result_box{padding: 10px !important;min-width: 600px;margin: 0 auto;max-width: fit-content !important;}
.search_result_dic{padding: 10px !important;}
.search_result_box .search_result_dic .sr_title{   background: rgb(40, 39, 101);padding: 8px 15px !important;border-left: 4px solid #52b967;font-size: 16px !important;font-weight: 500;width: fit-content;margin: 10px !important;
height: auto !important;min-height: auto !important;color: #fff !important;text-align: left;}

.search_result_box .search_result_dic .result_dic .text-dark{}
.search_result_box .search_result_dic .result_dic{    padding: 10px 15px;  }
.search_result_box .search_result_dic .result_dic .btn_log_forg  {    text-align: center;    margin:15px 10px 10px 10px;  }
.search_result_box .search_result_dic .result_dic .btn_log_forg > a{padding: 5px 10px !important;height: 38px;line-height: 25px;border-radius: 4px;background-color: #52b967;color: #ffffff;border-color: #52b967;margin: 0 5px;}
.search_result_box .search_result_dic .result_dic .alert{padding: 10px;margin: 20px auto 5px auto;text-shadow: 0 1px 0 rgba(255,255,255,0.5);background-color: #fcf8e3;border: 1px solid #fbeed5;border-radius: 4px;text-align: center;
color: #000;}

.search_result_box .search_result_dic .result_dic .userDetailbox{margin: 10px 5px;background: #f9f9f9;padding: 20px;line-height: 22px;color: #212529!important;font-weight: bold;}
.search_result_box .search_result_dic .result_dic .userDetailbox strong{color: #707070!important;font-weight: 500;}

.search_result_box .search_result_dic .result_dic table.resultTable {background-color: #EEEEEE;width: 100%;text-align: left;border-collapse: collapse;margin-top: 20px;margin-bottom: 20px;}
.search_result_box .search_result_dic .result_dic table.resultTable td,     .search_result_box .search_result_dic .result_dic table.resultTable th {border: 1px solid #F0F0F0;padding: 10px;}
.search_result_box .search_result_dic .result_dic table.resultTable tbody td {font-size: 14px;color: 212529;}
.search_result_box .search_result_dic .result_dic table.resultTable tr:nth-child(even) {background: #FDFDFD;}
.search_result_box .search_result_dic .result_dic table.resultTable thead {background: #52B967;}
.search_result_box .search_result_dic .result_dic table.resultTable thead th {font-size: 14px;font-weight: bold;color: #FFFFFF;border-left: 1px solid #D0E4F5;}
.search_result_box .search_result_dic .result_dic table.resultTable thead th:first-child {border-left: none;}
    
.org_mathch{display: block; margin: 0 auto 10px auto;line-height: 25px;}
.btn_register_orga {background: #282765;color: #fff;padding: 7px 13px;font-weight: 500;border-radius: 3px;display: block;width: max-content;margin: 0 auto;}
.btn_register_orga:hover{background: #52b967;color: #fff;}
.btn_none_register_orga{padding: 7px 10px !important;height: 38px;line-height: 25px;border-radius: 4px;background-color: #52b967;color: #ffffff;border-color: #52b967;margin:10px 5px 0 5px;}
.btn_none_register_orga:hover{background: #282765;  color: #fff;}