12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235 |
- /*========================================
- PRODUCT DETAILS PAGE STYLE
- =========================================*/
- .product-card {
- width: 100%;
- overflow: hidden;
- position: relative;
- margin-bottom: 25px;
- background: var(--white);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .product-card:hover .product-widget {
- opacity: 1;
- bottom: 15px;
- }
- .product-media {
- position: relative;
- }
- .product-label {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- align-items: flex-start;
- position: absolute;
- top: 20px;
- left:20px;
- z-index:1;
- }
- .label-text {
- font-size: 14px;
- padding: 5px 8px;
- line-height: 13px;
- border-radius: 50px;
- margin-bottom: 5px;
- color: var(--white);
- text-align: center;
- text-transform: capitalize;
- }
- .label-text.off {
- background: var(--black);
- }
- .label-text.new {
- background: var(--black);
- }
- .label-text.sale {
- background: var(--orange);
- }
- .label-text.feat {
- background: var(--purple);
- }
- .label-text.rate {
- background: var(--yellow);
- }
- .label-text.order {
- background: var(--blue);
- }
- .product-wish {
- position: absolute;
- top: 20px;
- right: 20px;
- font-size: 22px;
- color: var(--black);
- z-index:1;
- }
- .product-wish.active {
- color: var(--primary);
- }
- .product-image {
- position:relative;
- }
- .product-image img {
- width: 100%;
- }
- .product-image:after {
- content:' ';
- display:block;
- position:absolute; top:0; left:0;
- width:100%; height:100%;
- background:rgba(0, 0, 0,.03);
- }
- .product-widget {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- position: absolute;
- bottom: 0px;
- left: 0px;
- width: 100%;
- opacity: 0;
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .product-widget a {
- width: 40px;
- height: 40px;
- font-size: 15px;
- margin: 0px 6px;
- line-height: 40px;
- text-align: center;
- border-radius: 8px;
- color: var(--white);
- background: var(--primary);
- text-shadow: var(-primary-tshadow);
- -webkit-box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.12);
- box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.12);
- }
- .product-content {
- }
- .product-rating {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- margin-bottom: 3px;
- }
- .product-rating i,
- .product-rating a {
- font-size: 14px;
- margin: 0px 2px;
- color: var(--gray);
- }
- .product-rating a {
- white-space: nowrap;
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .product-rating a:hover {
- color: var(--primary);
- text-decoration: underline;
- }
- .product-rating .active {
- color: var(--yellow);
- }
- .product-name {
- margin-bottom:5px;
- font-weight:400;
- text-transform: capitalize;
- }
- .product-name a {
- color: var(--black);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- font-weight:inherit;
- }
- .product-name a:hover {
- color: inherit;
- }
- .product-price {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: flex-start;
- -ms-flex-align: flex-start;
- align-items: flex-start;
- -webkit-box-pack: flex-start;
- -ms-flex-pack: flex-start;
- justify-content: flex-start;
- -webkit-box-align: baseline;
- -ms-flex-align: baseline;
- align-items: baseline;
- margin-bottom: 13px;
- color: var(--black);
- }
- .product-price del {
- color: var(--red);
- margin-right: 8px;
- }
- .product-price span {
- color: var(--price);
- white-space: nowrap;
- font-weight:700;
- }
- .product-price span small {
- font-weight: 400;
- }
- .product-disable {
- position: relative;
- }
- .product-disable:hover {
- border-color: var(--border);
- -webkit-box-shadow: none;
- box-shadow: none;
- }
- .product-disable:hover .product-add {
- color: var(--heading);
- background: var(--border);
- }
- .product-disable .product-widget {
- visibility: hidden;
- }
- .product-disable::before {
- position: absolute;
- content: "Out of Stock";
- top: 40%;
- left: 50%;
- z-index: 2;
- width: 100%;
- font-size: 15px;
- font-weight: 400;
- padding: 15px 0px;
- text-align: center;
- text-transform: uppercase;
- text-shadow: var(--primary-tshadow);
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- color: var(--white);
- background: rgba(224, 152, 22, 0.9);
- }
- .product-disable::after {
- position: absolute;
- content: "";
- top: 0px;
- left: 0px;
- z-index: 1;
- width: 100%;
- height: 100%;
- border-radius: 8px;
- background: rgba(255, 255, 255, 0.6);
- }
- @media (max-width: 575px) {
- .product-card {
- padding: 8px;
- margin-bottom: 8px;
- }
- .product-name {
- font-size: 15px;
- line-height: 22px;
- }
- }
- .detail .btn {display:flex; background:var(--primary); justify-content:center; align-items:center; height:48px; color:#fff;}
- .detail .btn:hover {color:black;}
- .btn_group {display:flex; justify-content:space-between; align-items:center;}
- .btn_group > * {width:33%;}
- .item_detail.inner-section {margin-top:30px;}
- .item_detail .container {border-top:1px solid var(--black);}
- .item_detail .nav-tabs {margin-bottom:0; padding: 60px 25px 0px;}
- .details-gallery {
- position: relative;
- }
- .details-label-group {
- position: absolute;
- top: 20px;
- left: 20px;
- z-index: 1;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
- .details-label {
- font-size: 14px;
- padding: 6px 20px;
- margin-bottom: 6px;
- line-height: 13px;
- border-radius: 50px;
- text-transform: capitalize;
- text-align: center;
- color: var(--white);
- }
- .details-label:last-child {
- margin-bottom: 0px;
- }
- .details-label.off {
- background: var(--red);
- }
- .details-label.new {
- background: var(--black);
- }
- .details-label.sale {
- background: var(--orange);
- }
- .details-label.feat {
- background: var(--purple);
- }
- .details-label.rate {
- background: var(--yellow);
- }
- .details-preview {
- margin-bottom: 16px;
- }
- .details-preview li img {
- width: 100%;
- border-radius: 8px;
- }
- .details-thumb li {
- margin: 0px 8px;
- cursor: pointer;
- }
- .details-thumb li img {
- width: 100%;
- border-radius: 8px;
- border: 1px solid var(--white);
- }
- .details-thumb .slick-current img {
- border: 1px solid #5f6472;
- }
- .product-navigation {
- margin-bottom: 25px;
- padding: 20px 25px;
- border-radius: 8px;
- background: var(--white);
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- }
- .product-navigation li a {
- color: var(--gray);
- text-transform: capitalize;
- position: relative;
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .product-navigation li a:hover {
- color: var(--primary);
- }
- .product-navigation li a:hover .product-nav-popup {
- visibility: visible;
- opacity: 1;
- }
- .product-nav-popup {
- position: absolute;
- top: 30px;
- left: 50%;
- z-index: 3;
- width: 100px;
- height: auto;
- visibility: hidden;
- opacity: 0;
- padding: 10px;
- border-radius: 8px;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- background: var(--white);
- border: 1px solid var(--border);
- -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
- box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .product-nav-popup::before {
- position: absolute;
- content: "";
- z-index: -1;
- top: -3px;
- left: 50%;
- width: 12px;
- height: 12px;
- border-radius: 3px;
- -webkit-transform: rotate(45deg) translateX(-50%);
- transform: rotate(45deg) translateX(-50%);
- background: var(--white);
- border-top: 1px solid var(--border);
- border-left: 1px solid var(--border);
- }
- .product-nav-popup img {
- width: 100%;
- }
- .product-nav-popup small {
- font-size: 14px;
- line-height: 18px;
- display: inline-block;
- }
- .details-content {
- padding: 35px 35px;
- border-radius: 8px;
- background: var(--white);
- }
- .details-name {
- font-size: 26px;
- line-height: 34px;
- margin-bottom: 5px;
- text-transform: capitalize;
- }
- .details-name a {
- color: var(--black);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .details-name a:hover {
- color: var(--primary);
- }
- .details-meta {
- margin-bottom: 12px;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- }
- .details-meta p {
- font-size: 13px;
- margin-right: 20px;
- white-space: nowrap;
- text-transform: uppercase;
- color: var(--placeholder);
- }
- .details-meta span,
- .details-meta a {
- margin-left: 5px;
- color: var(--placeholder);
- }
- .details-meta a:hover {
- text-decoration: underline;
- color: var(--primary);
- }
- .details-rating {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- margin-bottom: 15px;
- }
- .details-rating i,
- .details-rating a {
- font-size: 15px;
- margin-right: 3px;
- color: var(--gray);
- }
- .details-rating a {
- margin-left: 8px;
- white-space: nowrap;
- text-transform: capitalize;
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .details-rating a:hover {
- color: var(--primary);
- text-decoration: underline;
- }
- .details-rating .active {
- color: var(--yellow);
- }
- .details-price {
- margin-bottom: 20px;
- }
- .details-price del {
- color: var(--red);
- margin-right: 25px;
- }
- .details-price span {
- color: var(--primary);
- white-space: nowrap;
- }
- .details-price span small {
- font-size: 14px;
- font-weight: 400;
- text-transform: capitalize;
- }
- .details-desc {
- margin-bottom: 25px;
- }
- .details-list-group {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- margin-bottom: 25px;
- }
- .details-list-group:last-child {
- margin-bottom: 0px;
- }
- .details-list-title {
- font-weight: 500;
- margin-right: 15px;
- color: var(--heading);
- text-transform: capitalize;
- }
- .details-tag-list {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- }
- .details-tag-list li {
- margin-right: 8px;
- }
- .details-tag-list li a {
- font-size: 14px;
- line-height: 12px;
- padding: 8px 10px;
- border-radius: 5px;
- letter-spacing: 0.3px;
- text-transform: capitalize;
- color: var(--text);
- background: var(--chalk);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .details-tag-list li a:hover {
- color: var(--white);
- background: var(--primary);
- }
- .details-share-list {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- }
- .details-share-list li {
- margin-right: 8px;
- }
- .details-share-list li a {
- width: 35px;
- height: 35px;
- font-size: 16px;
- line-height: 35px;
- border-radius: 50%;
- text-align: center;
- color: var(--text);
- background: var(--chalk);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .details-share-list li a:hover {
- color: var(--white);
- background: var(--primary);
- }
- .details-add-group {
- margin: 0;
- }
- /*.details-add-group .product-add,
- .details-add-group .action-input,
- .details-buy, .details-buy:hover {
- display:flex;
- padding: 10px 0px;
- color: var(--white);
- background: var(--black);
- border:1px solid var(--black);
- text-transform: uppercase;
- justify-content:center; align-items:center;
- }
- */
- .details-buy i {margin-right: 5px;}
- .details-add-group .action-minus i,
- .details-add-group .action-plus i {
- background: var(--chalk);
- }
- .details-action-group {
- display: -ms-grid;
- /*display: grid;*/
- grid-gap: 15px;
- -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
- grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
- position: relative;
- }
- .details-action-group a {
- padding: 10px 0px;
- color: var(--black);
- background: var(--white);
- border:1px solid #5c6bc0; border-radius:5px;
- color:var(--primary);
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .details-action-group a:hover {
- color: var(--primary);
- }
- .details-action-group a i {
- font-size: 16px;
- margin-right: 8px;
- }
- .details-action-group a span {
- font-size: 14px;
- font-weight: 500;
- letter-spacing: 0.5px;
- text-transform: uppercase;
- }
- .details-wish.active {
- color: var(--white);
- background: var(--primary);
- }
- .details-wish.active:hover {
- color: var(--white);
- background: var(--primary);
- }
- .product-details-frame {
- padding: 50px 0;
- border-radius: 8px;
- background: var(--white);
- }
- .product-details-frame:last-child {
- margin-bottom: 0px;
- }
- .product-details-frame .review-list {
- margin-bottom:-50px;
- }
- .frame-title {
- margin-bottom: 30px;
- text-transform: capitalize;
- font-size: 24px;
- font-weight: 500;
- }
- .tab-descrip {
- position: relative;
- }
- .tab-descrip ul {
- list-style: disc;
- margin-left: 20px;
- margin-top: 25px;
- }
- .tab-descrip ul li {
- margin-bottom: 8px;
- }
- .tab-descrip ul li:last-child {
- margin-bottom: 0px;
- }
- .tab-descrip img {
- width: 100%;
- border-radius: 8px;
- }
- .tab-descrip a {
- position: absolute;
- top: 50%;
- left: 50%;
- z-index: 2;
- width: 80px;
- height: 80px;
- font-size: 22px;
- line-height: 80px;
- border-radius: 50%;
- text-align: center;
- color: var(--white);
- background: rgba(15, 199, 86, 0.8);
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- -webkit-box-shadow: var(--primary-bshadow);
- box-shadow: var(--primary-bshadow);
- text-shadow: var(--primary-tshadow);
- }
- .table-bordered {
- margin-bottom: 0px;
- }
- .table-bordered th,
- .table-bordered td {
- padding: 12px 25px;
- text-align: left;
- }
- .table-bordered th {
- font-weight: 500;
- }
- .table-bordered td:last-child {
- border-right: 1px solid var(--border);
- }
- .review-item {
- padding: 45px 45px;
- border-radius: 8px;
- margin-bottom: 30px;
- background: var(--white);
- border: 1px solid var(--border);
- }
- .review-item:last-child {
- margin-bottom: 0px;
- }
- .review-media {
- margin-bottom: 15px;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- }
- .review-avatar {
- margin-right: 15px;
- border-radius: 50%;
- border: 2px solid var(--primary);
- }
- .review-avatar img {
- width: 65px;
- border-radius: 50%;
- border: 2px solid var(--white);
- }
- .review-meta {
- text-transform: capitalize;
- }
- .review-meta a {
- color: var(--heading);
- text-transform: capitalize;
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .review-meta a:hover {
- color: var(--primary);
- }
- .review-meta span {
- display: block;
- font-size: 15px;
- font-weight: 400;
- color: var(--text);
- }
- .review-meta span b {
- font-weight: 500;
- color: var(--primary);
- }
- .review-rating {
- margin-bottom: 10px;
- }
- .review-rating li {
- font-size: 16px;
- margin-right: 5px;
- color: var(--yellow);
- display: inline-block;
- }
- .review-desc {
- margin-bottom: 20px;
- }
- .review-reply {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- }
- .review-reply input {
- width: 100%;
- padding: 7px 18px;
- border-radius: 6px;
- margin-right: 20px;
- background: var(--white);
- }
- .review-reply button {
- font-size: 15px;
- padding: 6px 15px;
- border-radius: 6px;
- color: var(--white);
- background: var(--primary);
- text-transform: capitalize;
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .review-reply button:hover {
- background: var(--white);
- border:1px solid var(--primary);
- color: var(--primary);
- }
- .review-reply button i {
- margin-right: 5px;
- }
- .review-reply-list {
- margin-left: 80px;
- margin-top: 35px;
- border-top: 1px solid var(--border);
- }
- .review-reply-item {
- padding: 30px 0px;
- border-bottom: 1px solid var(--border);
- }
- .review-reply-item:last-child {
- padding-bottom: 0px;
- border-bottom: none;
- }
- .review-form textarea {height:150px;}
- .review-form .btn {
- width: 100%;
- padding: 12px 30px;
- }
- @media (max-width: 991px) {
- .product-navigation {
- margin: 25px 0px;
- }
- }
- @media (max-width: 575px) {
- .details-content {
- padding: 20px;
- }
- .details-name {
- font-size: 22px;
- line-height: 30px;
- }
- .product-details-frame {
- padding: 20px;
- }
- .review-item {
- padding: 20px 15px;
- }
- .review-reply {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
- .review-reply input {
- margin: 0px 0px 15px;
- }
- .review-reply-list {
- margin-left: 25px;
- }
- .star-rating label {
- margin: 0px 6px;
- }
- }
- @media (min-width: 576px) and (max-width: 767px) {
- .review-reply-list {
- margin-left: 30px;
- }
- }
- .btn_group {display:flex; justify-content:space-between; align-items:center;}
- .btn_group > * {width:33%;}
- .item_detail.inner-section {margin-top:30px;}
- .item_detail .container {border-top:1px solid var(--black);}
- .item_detail .nav-tabs {margin-bottom:0; padding: 60px 25px 0px; border-bottom:none;}
- .detail_rel.inner-section {margin-top:60px; padding-bottom:100px; padding-top:90px; border-top:1px solid #b5b7c5;}
- .detail_rel h2 {margin-bottom:60px; font-size:32px; font-family:inherit; text-align:center; font-weight:500;}
- .detail_rel .product-label {top:10px; left:10px;}
- .detail_rel .product-wish {top:10px; right:10px;}
- .detail_rel .product-card {margin-bottom:40px;}
- .detail_rel .product-image:after {background:none;}
- .detail_rel .product-content {padding:10px 0;}
- .detail_rel .product-action button i {background:#ccc;}
- .detail_rel .product-action button i:hover {background:var(--primary);}
- .details-gallery .slick-slide {height:auto;}
- .details-gallery .slick-slide {height:auto;}
- .inner-section.detail.credit-item {margin-bottom:0;}
- .product-add {
- /*width: 100%;*/
- padding: 6px 3px;
- text-transform: capitalize;
- color: var(--black);
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: baseline;
- -ms-flex-align: baseline;
- align-items: baseline;
- -webkit-box-pack: flex-start;
- -ms-flex-pack: flex-start;
- justify-content: flex-start;
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .product-add i {
- margin-right: 5px;
- }
- .product-action {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- /*display: none;*/
- }
- .product-action button {}
- .product-action button i {
- width: 40px;
- height: 48px;
- font-size: 14px;
- line-height:48px;
- border-radius: 6px;
- text-align: center;
- display: inline-block;
- color: var(--txt);
- background: var(--chalk);
- text-shadow: var(--primary-tshadow);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .product-action button i:hover {
- color: var(--white);
- background: var(--primary);
- }
- .product-action input {
- width: 45px; height:48px;
- font-size: 15px;
- margin: 0px 5px;
- padding: 6px 0px;
- border:1px solid var(--border);
- border-radius: 6px;
- text-align: center;
- color: var(--black);
- /*text-shadow: var(--primary-tshadow);*/
- }
- .nav-tabs {
- border: none;
- padding: 25px 25px;
- border-radius: 8px;
- margin-bottom: 25px;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- background: var(--white);
- }
- .nav-tabs li {
- padding: 0px 30px;
- border-right: 1px solid var(--border);
- }
- .nav-tabs li:last-child {
- border: none;
- }
- .tab-link {
- font-size: 15px;
- font-weight: 500;
- text-transform: uppercase;
- color: var(--heading);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .tab-link:hover {
- color: var(--primary);
- }
- .tab-link i {
- font-size: 18px;
- margin-right: 3px;
- }
- .tab-link.active {
- color: var(--primary);
- }
- .tab-pane {
- display: none;
- padding: 0px;
- }
- .tab-pane.active {
- display: block;
- }
- .btn_more {padding: 10px 40px; background:var(--primary); border:none; border-radius:50px; color:var(--white); font-size:17px;}
- .btn_more:hover {color:var(--white);}
- @media (max-width: 575px) {
- .nav-tabs {
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
- .nav-tabs li {
- padding: 5px;
- border: none;
- }
- }
- @media (min-width: 576px) and (max-width: 767px) {
- .nav-tabs {
- padding: 25px 10px;
- }
- .nav-tabs li {
- padding: 0px 20px;
- }
- }
|