@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    overflow-x: hidden;
}
ul, li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a, .btn {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
a, a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
:focus {
  outline: none;
}
.btn.focus, .btn:focus {
    box-shadow: none;
}

/******** button *************/

.btnStyle {
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 2;
    display: inline-block;
    text-align: center;
    line-height: 18px;
    padding: 18px 45px;
    border: 0;
    color: #fff;
}
.btnStyle:hover {
  color: #fff;
}
.btnStyle:before {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    border-radius: 50px;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    background: #12588e;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    -ms-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.btnStyle:hover:before {
  left: 0%;
  right: 0%;
  opacity: 1;
}
.btn_primary {
  background: #074574;
}
.btn_secondary {
    background: #FF3EB3;
    padding: 9px 25px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}
.btn_secondary:before{
    background:#f135a7; 
}

/******** dashboard page start *******/

/***sidebar-layout-start****/

.sidebar-nav {
    position: fixed;
    width: 300px;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
}
.sidebar-nav .mCSB_inside > .mCSB_container {
    margin-right: 0;
}
.sidebarLinks {
    min-height: 100vh;
    position: relative;
}
.logoSec {
    position: fixed;
    left: 0;
    right: 0;
    width: 300px;
    background: #fff;
    padding: 50px 20px 30px 50px;
    top: 0;
    z-index: 1;
}
.logoSec > a > img {
    max-width: 72px;
}
.sideColCard {
    padding: 170px 0 30px;
}
.sidebarLink > ul > li {
    position: relative;
}
.sidebarLink > ul > li + li {
    margin: 15px 0;
}
.sidebarLink > ul > li > a {
    color: #172A48;
    display: block;
    font-size: 18px;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    padding: 6px 20px 6px 50px;
    position: relative;
    border-left: 2px solid transparent;
}
.sidebarLink > ul > li > a.active {
    color: #FF3EB3;
    border-color: #FF3EB3;
}
.sidebarLink > ul > li > a:hover {
    color: #FF3EB3;
    border-color: #FF3EB3;
}
.sidebarLink > ul > li > a .linkIcon {
    vertical-align: text-bottom;
    width: 35px;
    display: inline-block;
}
.sidebarLink > ul > li > a .linkIcon > svg {
    width: 20px;
}
.sidebarLink > ul > li > a .linkIcon > svg path, .sidebarLink > ul > li > a .linkIcon > svg ellipse {
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.sidebarLink > ul > li > a.active .linkIcon.strokeIcon > svg path {
    stroke: #FF3EB3;
}
.sidebarLink > ul > li > a:hover .linkIcon.strokeIcon > svg path, .sidebarLink > ul > li > a:hover .linkIcon.strokeIcon > svg ellipse {
    stroke: #FF3EB3;
}
.sidebarLink > ul > li > a.active .linkIcon.fillIcon > svg path {
    fill: #FF3EB3;
}
.sidebarLink > ul > li > a:hover .linkIcon.fillIcon > svg path, .sidebarLink > ul > li > a:hover .linkIcon.fillIcon > svg ellipse {
    fill: #FF3EB3;
}
.title_sidebar_list {
    display: inline-block;
}
/***sidebar-layout-end****/

.page-content {
    padding: 30px;
    min-height: 100vh;
    margin-left: 300px;
    background-color: #EEF6FC;
    border-top-left-radius: 40px;
    margin-top: 74px;
}
.header-section {
    background-color: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
    padding: 20px;
    margin-left: 300px;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.rightIconbar {
    text-align: right;
}
.rightIconbar > ul > li {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.rightIconbar > ul > li + li {
    margin-left: 20px;
}
.userCol > a > img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    background-color: #ccc;
    border-radius: 50%;
}
.cardStyle {
    padding: 50px;
}
.borderRadiusRight{
    border-top-right-radius: 40px;
}
.rightSidebar {
    background-color: #fff;
}
.alertCardStyle {
    background-color: #FFDEC1;
    border-radius: 10px;
    padding: 0 50px;
    position: relative;
    margin-bottom: 40px;
}
.alertCardCol {
    padding: 20px 0;
}
.alertCloseIcon {
    position: absolute;
    right: 25px;
    top: 10px;
    cursor: pointer;
}
.alertCardText > ul > li {
    position: relative;
    padding-left: 30px;
}
.alertCardText > ul > li + li {
    margin-top: 3px;
}
.alertCardText > ul > li > span.alerthealthIcon {
    position: absolute;
    left: 0;
    top: 0;
}
.healthText {
    color: #FDA458;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}
.alertCardText > ul > li.callockText {
    color: #172A48;
}
.page-content.pageContentStyle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}
.cardStyle.cardLandingStyle {
    background-color: #EEF6FC;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    min-height: 100vh;
}
.healthImgCol {
    padding-right: 30px;
    margin-top: -30px;
}
.titlelg > h5 {
    color: #172A48;
    font-size: 23px;
}
.titlelg > span {
    color: #172A48;
    font-size: 14px;
    display: block;
}
.petCardfeat {
    position: relative;
}
.blankLink {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.petCardfeatIcon {
    width: 58px;
    height: 58px;
    background-color: #c3c3c3;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 33px rgba(0,0,0,0.1);
}
.petCardfeatText > h6 {
    color: #172A48;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.bgStyle1 {
    background-color: #15C8BC;
}
.bgStyle2 {
    background-color: #FF3EB3;
}
.bgStyle3 {
    background-color: #074574;
}
.bgStyle4 {
    background-color: #FFCD50;
}
.cardboxSection {
    padding: 30px 0;
}
.alertCardText {
    padding-left: 15px;
}
.petCardfeatText {
    padding-left: 14px;
}
.cardSection2 {
    padding: 30px 0;
}
.titlemd > h5 {
    color: #172A48;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 20px;
}
.viewall_link {
    font-size: 12px;
    color: #172A48;
    font-weight: 400;
    text-decoration: underline;
}
.viewall_link:hover{
    text-decoration: underline;
}
.titleSec > ul > li {
    display: inline-block;
    vertical-align: middle;
}
.titleSec > ul > li + li {
    margin-left: 20px;
}
.addnew_link {
    font-size: 12px;
    color: #172A48;
    font-weight: 400;
    text-decoration: underline;
}
.cardStyle2 {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 33px rgba(0,0,0,0.1);
    position: relative;
}
.cardImgCol > img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px 20px 0 0;
}
.cardText {
    padding: 15px 15px 5px;
}
.cardtitlelg > h4 {
    color: #074574;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}
.cardtitlelg > span {
    color: #828282;
    font-size: 12px;
}
/******** dashboard page end *******/

/******** login/signup page start *******/

.pageContent {
  position: relative;
}
.mh-100 {
  height: 100%;
  min-height: 100vh;
}
.formSection {
    height: 100%;
    position: relative;
    max-width: 494px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}
.logoStyle {
    display: inline-block;
}
.formContent > h4 {
    font-size: 30px;
    font-weight: 800;
    padding-top: 50px;
    padding-bottom: 15px;
    line-height: 30px;
    text-transform: uppercase;
}
.formStyle {
    background: transparent;
    height: 50px;
    border-radius: 50px;
    font-size: 14px;
    color: #000;
    padding: 10px 50px 10px 30px;
    border-color: #DCDCDC;
    font-weight: 600;
    resize: none;
}
.formStyle::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #B9B9B9;
}
.formStyle::-moz-placeholder { /* Firefox 19+ */
  color: #B9B9B9;
}
.formStyle:-ms-input-placeholder { /* IE 10+ */
  color: #B9B9B9;
}
.formStyle:-moz-placeholder { /* Firefox 18- */
  color: #B9B9B9;
}
.form-control.formStyle:focus {
  color: #000;
  border-color: #DCDCDC;
  outline: 0;
  box-shadow: none;
}
.inputformIcon {
    position: absolute;
    right: 20px;
    top: 13px;
}
.imgColStyle {
    background-color: #172A48;
    min-height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 40px 0 0 0;
}
.imgColStyle::before, .imgColStyle::after{
	content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    background-repeat: no-repeat;
}
.imgColStyle::before {
    /*background-image: url(/images/petworld/stroke-shape.svg);*/
    background-position: top right;
}
.imgColStyle::after {
    /*background-image: url(/images/petworld/shape-1.svg);*/
    background-position: center right;
}
.dotShape {
    position: relative;
}
.dotShape::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    background-repeat: no-repeat;
    /*background-image: url(/images/petworld/dot-shape.svg);*/
    background-position: center;
    z-index: 1;
}
.formGroup {
    margin-bottom: 10px;
    position: relative;
}
.chkLinkStyle {
    padding: 20px 0 0;
}
.formCheck input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.formCheck label {
    position: relative;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    padding-left: 30px;
    margin: 0;
}
.formCheck label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #DCDCDC;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    left: 0;
    top: 1px;
}
.formCheck input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 6px;
    height: 10px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.forgetpass > a{
	color: #090963;
	font-size: 16px;
}
.form-group.formCheck {
    margin: 0;
    text-align: left;
}
.forgetpass {
    text-align: right;
}
.textLinkCol > p{
	font-size: 14px;
}
.textLinkCol {
    padding-top: 15px;
}
.textLinkCol > p > a {
    color: #090963;
    font-weight: 700;
    text-decoration: underline;
}
.imgCol {
    margin-left: -365px;
    position: relative;
    z-index: 1;
}
.formContent .btnCol {
    padding-top: 30px;
}
.was-validated .form-control.formStyle:invalid {
    background-image: none;
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: inherit;
    padding-right: 50px;
}
.form-control.is-valid, .was-validated .form-control:valid {
    background-image: none;
}
.needs-validation .invalid-feedback {
    text-align: left;
    padding-left: 15px;
}
.formCheck .form-check {
    padding-left: 0;
}
/******** login/signup page end *******/

/****************************************
*********** MEDIA-QUARY ************
*****************************************/

@media (max-width: 1860px) {
.imgCol {
    margin-left: -350px;
}
.imgCol > img {
    max-width: 960px;
}
}
@media (max-width: 1760px) {
.imgCol {
    margin-left: -330px;
}
.imgCol > img {
    max-width: 900px;
}
}
@media (max-width: 1640px) {
.imgCol > img {
    max-width: 800px;
}
.imgCol {
    margin-left: -290px;
}
.dotShape::before {
    right: 100px;
    left: 100px;
    bottom: 100px;
    top: 100px;
    background-size: contain;
}
.imgColStyle::before {
    background-size: contain;
    max-width: 550px;
    margin-left: auto;
}
.imgColStyle::after {
    background-size: contain;
    top: 70px;
    bottom: 70px;
    max-width: 350px;
    margin-left: auto;
}
}
@media (max-width: 1500px) {
.imgCol > img {
    max-width: 700px;
}
.imgCol {
    margin-left: -270px;
}
}
@media (max-width: 1400px) {
	.imgCol {
    margin-left: -200px;
}
}
@media (max-width: 1199px) {
.imgCol {
    margin-left: 0;
}
.imgCol > img {
    max-width: 100%;
}
}
@media (max-width: 991px) {
.imgColStyle {
    background-color: transparent;
    min-height: 100%;
    display: block;
    border-radius: 0;
}
.dotShape::before, .imgColStyle::before, .imgColStyle::after{
	display: none;
}
.pageContent {
    padding: 0 15px;
}
.formSection {
    padding: 50px 0;
}
}
@media (max-width: 585px) {
.formSection {
    padding: 30px 0;
    max-width: 100%;
}
.formContent > h4 {
    padding-top: 30px;
    font-size: 24px;
    line-height: 26px;
}
.formSection {
    padding: 20px 0;
}
.formStyle {
    height: 45px;
    padding: 10px 50px 10px 20px;
}
.chkLinkStyle {
    padding: 10px 0 0;
}
.formCheck label {
    font-size: 14px;
    padding-left: 22px;
    line-height: 14px;
}
.formCheck label:before {
    width: 16px;
    height: 16px;
    top: -1px;
}
.formCheck input:checked + label:after {
    width: 5px;
    height: 9px;
    left: 7px;
}
.forgetpass > a {
    font-size: 14px;
}
.btnStyle {
    height: 50px;
    padding: 10px 30px;
}
}
@media (max-width: 485px) {
.textLinkCol {
    padding-top: 10px;
}
.formContent > h4 {
    padding-bottom: 5px;
    font-size: 20px;
    line-height: 20px;
    padding-top: 20px;
}
.formContent .btnCol {
    padding-top: 15px;
}
}