appscms-tools-theme 4.8.8 → 4.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -2190,3 +2190,755 @@ select:focus {
2190
2190
  grid-template-columns: auto; /* 1 column for small screens */
2191
2191
  }
2192
2192
  }
2193
+ .nav-tool-bar {
2194
+ position: sticky;
2195
+ top: 0;
2196
+ width: 100%;
2197
+ z-index: 999;
2198
+ }
2199
+ .appscms-upload-section {
2200
+ height: 290px;
2201
+ border: 2px dashed #484848;
2202
+ padding: 20px;
2203
+ border-radius: 20px;
2204
+ display: flex;
2205
+ align-items: center;
2206
+ justify-content: center;
2207
+ background-color: white;
2208
+ gap: 10px;
2209
+ }
2210
+ .upload-btn {
2211
+ text-align: center;
2212
+ background-color: rgb(29, 22, 232);
2213
+ color: white;
2214
+ border-radius: 10px;
2215
+ width: 195px;
2216
+ height: 41px;
2217
+ padding: 10px;
2218
+ cursor: pointer;
2219
+ }
2220
+ .appscms-upload-section {
2221
+ display: flex;
2222
+ flex-direction: column;
2223
+ box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.17);
2224
+ }
2225
+
2226
+ .or-in-upload {
2227
+ display: flex;
2228
+ align-items: center;
2229
+ gap: 8px;
2230
+ font-size: 13px;
2231
+ }
2232
+ .line-in-upload {
2233
+ height: 1.5px;
2234
+ width: 60px;
2235
+ background-color: rgb(146, 146, 146);
2236
+ }
2237
+ .appscms-feature-image {
2238
+ max-width: 75px;
2239
+ }
2240
+ .appscms-feature-title {
2241
+ font-size: 17px;
2242
+ margin-top: 15px;
2243
+ font-weight: 600;
2244
+ margin-bottom: 0.5rem;
2245
+ }
2246
+
2247
+ .appscms-feature-description {
2248
+ font-size: 14px;
2249
+ line-height: 22px;
2250
+ margin-bottom: 0;
2251
+ }
2252
+
2253
+ /* how to section */
2254
+ .appscms-how-to-section {
2255
+ border-radius: 10px;
2256
+ background-color: #f4f5ff;
2257
+ box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
2258
+ }
2259
+ .appscms-howto-heading {
2260
+ /* margin-top: 40px; */
2261
+ font-size: 25px;
2262
+ font-weight: 500;
2263
+ }
2264
+ .how-to-video-wrapper {
2265
+ display: flex;
2266
+ align-items: center;
2267
+ justify-content: center;
2268
+ height: 100%;
2269
+ }
2270
+
2271
+ .appscms-howto-steps {
2272
+ font-size: 1rem;
2273
+ font-weight: normal;
2274
+ line-height: 200%;
2275
+ }
2276
+
2277
+ /* faq section */
2278
+ .faq-section {
2279
+ text-align: left;
2280
+ }
2281
+
2282
+ .faq-item {
2283
+ box-shadow: 5px 2px 8px rgba(0, 0, 0, 0.1);
2284
+ margin-bottom: 15px;
2285
+ background: white;
2286
+ padding: 1.5rem;
2287
+ border-radius: 7px;
2288
+ }
2289
+
2290
+ .faq-question {
2291
+ font-size: 25px;
2292
+ font-weight: 500;
2293
+
2294
+ margin-bottom: 10px;
2295
+ }
2296
+
2297
+ .faq-answer {
2298
+ font-size: 16px;
2299
+ font-weight: normal;
2300
+ margin-bottom: 20px;
2301
+ }
2302
+
2303
+ .faq-answer-list {
2304
+ font-size: 17px;
2305
+ font-weight: normal;
2306
+ margin-left: 20px;
2307
+ }
2308
+
2309
+ /* recent posts */
2310
+ .appscms-recentposts {
2311
+ font-size: 30px;
2312
+ }
2313
+
2314
+ /* rating section */
2315
+ .ratings {
2316
+ display: flex;
2317
+ justify-content: center;
2318
+ align-items: center;
2319
+ background-color: rgb(252, 252, 252);
2320
+ border-radius: 50px;
2321
+ height: 70px;
2322
+ /* color: #000000; */
2323
+ }
2324
+
2325
+ .appsms-user-rating-count {
2326
+ font-size: 25px;
2327
+ font-weight: 600;
2328
+ }
2329
+ .appsms-user-total-count {
2330
+ position: relative;
2331
+ right: 20px;
2332
+ top: 2px;
2333
+ }
2334
+
2335
+ @media (max-width: 768px) {
2336
+ .upload-btn {
2337
+ width: 268px;
2338
+ padding: 15px;
2339
+ border-radius: 50px;
2340
+ font-size: 20px;
2341
+ height: auto;
2342
+ }
2343
+ .upload-from-drives img {
2344
+ height: 40px;
2345
+ width: 40px;
2346
+ }
2347
+ .drag-msg {
2348
+ display: none;
2349
+ }
2350
+ .appscms-upload-section {
2351
+ height: 100px;
2352
+ margin-top: 20px;
2353
+ background-color: transparent;
2354
+ box-shadow: none;
2355
+ border: none;
2356
+ }
2357
+ .appscms-upload-icon,
2358
+ .or-in-upload {
2359
+ display: none;
2360
+ }
2361
+ .rating-tool {
2362
+ flex-direction: column;
2363
+ display: flex;
2364
+ gap: 15px;
2365
+ height: auto;
2366
+ padding: 15px 0px;
2367
+ }
2368
+ .heading {
2369
+ padding-top: 70px;
2370
+ text-align: center;
2371
+ display: flex;
2372
+ align-items: center;
2373
+ justify-content: center;
2374
+ }
2375
+ .heading h1 {
2376
+ font-weight: 600;
2377
+ font-size: 30px;
2378
+ }
2379
+ .heading h2 {
2380
+ width: 80vw;
2381
+ font-size: 14px;
2382
+ text-align: center;
2383
+ }
2384
+
2385
+ .appscms-how-to-section {
2386
+ border-radius: 0px;
2387
+ background-color: transparent;
2388
+ box-shadow: none;
2389
+ }
2390
+ .appscms-howto-heading {
2391
+ text-align: center;
2392
+ margin-top: 40px;
2393
+ font-size: 23px;
2394
+ font-weight: 500;
2395
+ }
2396
+
2397
+ .appscms-howto-steps {
2398
+ font-size: 12px;
2399
+ font-weight: normal;
2400
+ line-height: 200%;
2401
+ }
2402
+ /* recent posts */
2403
+ .appscms-recentposts {
2404
+ font-size: 25px;
2405
+ }
2406
+
2407
+ /* faq section */
2408
+ .faq-question {
2409
+ font-size: 22px;
2410
+ margin-bottom: 18px;
2411
+ }
2412
+
2413
+ .faq-answer {
2414
+ font-size: 18px;
2415
+ margin-bottom: 2px;
2416
+ }
2417
+
2418
+ .faq-answer-list {
2419
+ font-size: 11px;
2420
+ }
2421
+ }
2422
+
2423
+ .upload-redirect {
2424
+ padding: 13px 1.5em 14px 1.5em;
2425
+ color: #fff;
2426
+ background-color: #5c5ce0;
2427
+ border-color: #5c5ce0;
2428
+ border-radius: 27px;
2429
+ font-size: 18px;
2430
+ font-weight: 600;
2431
+ border: none;
2432
+ }
2433
+
2434
+ #left-section {
2435
+ display: flex;
2436
+ flex-direction: column;
2437
+ align-items: baseline;
2438
+ justify-content: center;
2439
+ }
2440
+
2441
+ .right-section img {
2442
+ width: 90%;
2443
+ }
2444
+
2445
+ #left-section h1,
2446
+ #left-section h2 {
2447
+ text-align: left;
2448
+ width: 100%;
2449
+ }
2450
+
2451
+ .video-h1,
2452
+ .audio-h1 {
2453
+ font-weight: 600;
2454
+ font-size: 53px;
2455
+ }
2456
+ .toaster {
2457
+ top: 150px;
2458
+ padding: 12px 20px;
2459
+ color: #fff;
2460
+ display: inline-block;
2461
+ box-shadow: 0 3px 6px -1px rgb(0 0 0 / 12%),
2462
+ 0 10px 36px -4px rgb(77 96 232 / 30%);
2463
+ background: var(--primary-color);
2464
+ position: fixed;
2465
+ transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
2466
+ border-radius: 2px;
2467
+ right: 0px;
2468
+ cursor: pointer;
2469
+ text-decoration: none;
2470
+ max-width: calc(50% - 20px);
2471
+ z-index: 2147483647;
2472
+ }
2473
+ .inforgraphics_section {
2474
+ width: 100%;
2475
+ padding: 50px 0px 50px 0px;
2476
+ border-top: 1px solid rgb(224, 224, 224);
2477
+ display: flex;
2478
+ flex-direction: column;
2479
+ align-items: center;
2480
+ }
2481
+
2482
+ .inforgraphics_section .wrapper {
2483
+ display: flex;
2484
+ max-width: 90%;
2485
+ position: relative;
2486
+ }
2487
+
2488
+ .inforgraphics_section .wrapper i {
2489
+ top: 50%;
2490
+ height: 44px;
2491
+ width: 44px;
2492
+ color: #343f4f;
2493
+ cursor: pointer;
2494
+ font-size: 1.15rem;
2495
+ position: absolute;
2496
+ text-align: center;
2497
+ line-height: 44px;
2498
+ background: #eee;
2499
+ border-radius: 50%;
2500
+ transform: translateY(-50%);
2501
+ transition: transform 0.1s linear;
2502
+ }
2503
+
2504
+ .inforgraphics_section .wrapper i:active {
2505
+ transform: translateY(-50%) scale(0.9);
2506
+ }
2507
+
2508
+ .inforgraphics_section .wrapper i:hover {
2509
+ background: #f2f2f2;
2510
+ }
2511
+
2512
+ .inforgraphics_section .wrapper i:first-child {
2513
+ left: 0px;
2514
+ display: none;
2515
+ z-index: 999;
2516
+ }
2517
+
2518
+ .inforgraphics_section .wrapper i:last-child {
2519
+ right: 0px;
2520
+ }
2521
+
2522
+ .carousel {
2523
+ display: flex;
2524
+ max-width: 100%;
2525
+ overflow-x: scroll;
2526
+ scroll-snap-type: x mandatory;
2527
+ scroll-behavior: smooth;
2528
+ }
2529
+
2530
+ .carousel-inner {
2531
+ display: flex;
2532
+ flex-wrap: nowrap;
2533
+ justify-content: center;
2534
+ }
2535
+ @media screen and (max-width: 768px) {
2536
+ .carousel-inner {
2537
+ justify-content: normal;
2538
+ }
2539
+ }
2540
+ .slide {
2541
+ flex: 0 0 calc(100% / 3);
2542
+ scroll-snap-align: start;
2543
+ padding: 20px;
2544
+ }
2545
+
2546
+ .carousel img {
2547
+ width: 100%;
2548
+ object-fit: contain;
2549
+ max-width: 100%;
2550
+ height: auto;
2551
+ border-radius: 8px;
2552
+ }
2553
+
2554
+ .carousel-inner p {
2555
+ text-align: center;
2556
+ margin: 10px 0;
2557
+ font-size: 14px;
2558
+ white-space: normal;
2559
+ word-wrap: break-word;
2560
+ }
2561
+
2562
+ @media screen and (max-width: 768px) {
2563
+ .inforgraphics_section .wrapper {
2564
+ max-width: 100%;
2565
+ }
2566
+
2567
+ .carousel-inner p {
2568
+ font-size: 20px;
2569
+ }
2570
+
2571
+ .inforgraphics_section .wrapper i:first-child {
2572
+ left: 0;
2573
+ z-index: 99;
2574
+ }
2575
+
2576
+ .inforgraphics_section .wrapper i:last-child {
2577
+ right: 0;
2578
+ z-index: 99;
2579
+ display: block !important;
2580
+ }
2581
+
2582
+ .carousel {
2583
+ overflow-x: hidden;
2584
+ }
2585
+
2586
+ .slide {
2587
+ flex: 0 0 100%;
2588
+ margin-right: 0;
2589
+ }
2590
+ }
2591
+ .icon_box img {
2592
+ border-radius: 9px;
2593
+ padding: 4px;
2594
+ }
2595
+
2596
+ .search-container {
2597
+ display: flex;
2598
+ border: 1px solid #ccc;
2599
+ border-radius: 5px;
2600
+ overflow: hidden;
2601
+ height: 38px;
2602
+ width: 400px;
2603
+ background-color: white;
2604
+ position: relative;
2605
+ }
2606
+
2607
+ .search-input {
2608
+ flex: 1;
2609
+ border: none;
2610
+ padding: 12px 16px;
2611
+ font-size: 16px;
2612
+ outline: none;
2613
+ }
2614
+
2615
+ .search-input::placeholder {
2616
+ color: #888;
2617
+ }
2618
+
2619
+ .search-button {
2620
+ background-color: var(--primary-color);
2621
+ border: none;
2622
+ padding: 0 16px;
2623
+ display: flex;
2624
+ align-items: center;
2625
+ justify-content: center;
2626
+ cursor: pointer;
2627
+ outline: none;
2628
+ border-radius: 0 !important;
2629
+ }
2630
+
2631
+ .search-button svg {
2632
+ /* fill: #fff; */
2633
+ height: 20px;
2634
+ }
2635
+
2636
+ .search-button:active {
2637
+ background-color: #555;
2638
+ }
2639
+ .nav-search{
2640
+ position: relative;
2641
+ }
2642
+ .result-item{
2643
+ padding: 9px 12px;
2644
+ }
2645
+ .result-item a{
2646
+ color: #222325;
2647
+ }
2648
+ .searchbarResults{
2649
+ overflow: scroll;
2650
+ height: 60vh;
2651
+ background-color: #fff;
2652
+ border: 1px solid #e4e5e7;
2653
+ border-radius: 6px;
2654
+ -webkit-box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
2655
+ box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
2656
+ -webkit-box-sizing: border-box;
2657
+ box-sizing: border-box;
2658
+ color: #74767e;
2659
+ cursor: default;
2660
+ margin-top: 8px;
2661
+ padding: 12px;
2662
+ position: absolute;
2663
+ width: 100%;
2664
+ z-index: 101;
2665
+ display: none;
2666
+ }
2667
+
2668
+
2669
+
2670
+ .scroll-container {
2671
+ display: flex;
2672
+ align-items: center;
2673
+ background-color: #333;
2674
+ position: relative;
2675
+ }
2676
+
2677
+ .scroll-left,
2678
+ .scroll-right {
2679
+ background-color: #4456f6f7;
2680
+ color: white;
2681
+ border: none;
2682
+ height: 40px;
2683
+ cursor: pointer;
2684
+ position: absolute;
2685
+ width: 40px;
2686
+ top: 50%;
2687
+ z-index: 100;
2688
+ transform: translateY(-50%);
2689
+ }
2690
+
2691
+ .scroll-left {
2692
+ left: 0;
2693
+ }
2694
+
2695
+ .scroll-right {
2696
+ right: 0;
2697
+ }
2698
+
2699
+ .scroll-left:hover,
2700
+ .scroll-right:hover {
2701
+ background-color: #8691f6f7;
2702
+ }
2703
+
2704
+ .navbar {
2705
+ /* overflow-x: auto; */
2706
+ white-space: nowrap;
2707
+ flex-grow: 1;
2708
+ scroll-behavior: smooth;
2709
+ display: flex;
2710
+ }
2711
+
2712
+ .navbar ul {
2713
+ padding: 0;
2714
+ margin: 0;
2715
+ display: flex;
2716
+ list-style-type: none;
2717
+ }
2718
+
2719
+ .navbar li {
2720
+ display: inline;
2721
+ }
2722
+
2723
+
2724
+
2725
+ .mobile-search-bar {
2726
+ position: relative;
2727
+ height: 100px;
2728
+ width: 100%;
2729
+ display: none;
2730
+ }
2731
+
2732
+ .mobile-search-container {
2733
+ display: flex;
2734
+ border: 1px solid #ccc;
2735
+ border-radius: 5px;
2736
+ overflow: hidden;
2737
+ height: 38px;
2738
+ margin: 20px 0px 20px 0px;
2739
+ background-color: white;
2740
+ position: relative;
2741
+ }
2742
+
2743
+ .mobile-search-input {
2744
+ flex: 1;
2745
+ border: none;
2746
+ padding: 12px 16px;
2747
+ font-size: 16px;
2748
+ outline: none;
2749
+ }
2750
+
2751
+ .mobile-search-input::placeholder {
2752
+ color: #888;
2753
+ }
2754
+
2755
+ .mobile-search-button {
2756
+ background-color: #000;
2757
+ border: none;
2758
+ padding: 0 16px;
2759
+ display: flex;
2760
+ align-items: center;
2761
+ justify-content: center;
2762
+ cursor: pointer;
2763
+ outline: none;
2764
+ }
2765
+
2766
+ .mobile-search-button svg {
2767
+ /* fill: #fff; */
2768
+ height: 20px;
2769
+ }
2770
+
2771
+ .mobile-search-button:active {
2772
+ background-color: #555;
2773
+ }
2774
+
2775
+ .mobile-nav-search {
2776
+ position: relative;
2777
+ }
2778
+
2779
+ .mobile-result-item {
2780
+ padding: 9px 12px;
2781
+ }
2782
+
2783
+ .mobile-result-item a {
2784
+ color: #222325;
2785
+ }
2786
+
2787
+ .mobile-searchbarResults {
2788
+ background-color: #fff;
2789
+ border: 1px solid #e4e5e7;
2790
+ border-radius: 6px;
2791
+ -webkit-box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
2792
+ box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
2793
+ -webkit-box-sizing: border-box;
2794
+ box-sizing: border-box;
2795
+ color: #74767e;
2796
+ cursor: default;
2797
+ margin-top: 8px;
2798
+ padding: 12px;
2799
+ position: fixed;
2800
+ margin-top: 42px;
2801
+ width: 244px;
2802
+ height: 400px;
2803
+ overflow-y: scroll;
2804
+ z-index: 101;
2805
+ display: none;
2806
+ }
2807
+ .trustpilot-container {
2808
+ background-color: #eeeeee;
2809
+ width: 100vw;
2810
+
2811
+ padding-top: 8rem;
2812
+ padding-bottom: 8rem;
2813
+ }
2814
+
2815
+ .trustpilot-container a {
2816
+ text-decoration: none;
2817
+ }
2818
+
2819
+ .trustpilot-h2 {
2820
+ font-size: 24px;
2821
+ text-align: center;
2822
+ font-weight: bold;
2823
+ }
2824
+
2825
+ .trustpilot-description {
2826
+ font-size: 15px;
2827
+ text-align: center;
2828
+ }
2829
+
2830
+ .review-container {
2831
+ display: flex;
2832
+ }
2833
+
2834
+
2835
+
2836
+ .reviews {
2837
+ display: flex;
2838
+ overflow: hidden;
2839
+ }
2840
+
2841
+ .review-stars {
2842
+ display: flex;
2843
+ align-items: center;
2844
+ }
2845
+
2846
+ .review-stars svg {
2847
+ height: 18px;
2848
+ width: 18px;
2849
+ }
2850
+
2851
+ .review-verified {
2852
+ margin-left: 5px;
2853
+ display: flex;
2854
+ align-items: center;
2855
+ font-size: 13px;
2856
+ color: #676767;
2857
+ }
2858
+
2859
+ .review-text {
2860
+ color: #1a1a1a;
2861
+ font-size: 14px;
2862
+ display: -webkit-box;
2863
+ -webkit-line-clamp: 3;
2864
+ -webkit-box-orient: vertical;
2865
+ overflow: hidden;
2866
+ text-overflow: ellipsis;
2867
+ }
2868
+
2869
+ .review-title {
2870
+ font-weight: 600;
2871
+ color: #1a1a1a;
2872
+ font-size: 16px;
2873
+ }
2874
+
2875
+ .reviewer-name {
2876
+ color: #646565;
2877
+ font-size: 14px;
2878
+ }
2879
+
2880
+ .trustpilot-arrow-left,
2881
+ .trustpilot-arrow-right {
2882
+ position: absolute;
2883
+ top: 30%;
2884
+ background-color: #fff;
2885
+ border: none;
2886
+ display: flex;
2887
+ align-items: center;
2888
+ justify-content: center;
2889
+ border-radius: 50%;
2890
+ padding: 2px;
2891
+ height: 30px;
2892
+ width: 30px;
2893
+ }
2894
+
2895
+ .trustpilot-arrow-left svg,
2896
+ .trustpilot-arrow-right svg {
2897
+ color: #1a1a1a;
2898
+ height: 20px;
2899
+ width: 20px;
2900
+ }
2901
+ .trustpilot-arrow-left {
2902
+ left: -20px;
2903
+ }
2904
+ .trustpilot-arrow-right {
2905
+ right: 0;
2906
+ }
2907
+ .trustpilot-end{
2908
+ font-size: 15px;
2909
+ text-align: center;
2910
+ color: #1A1A1A;
2911
+ }
2912
+ .trustpilot-total-reviews,.trustpilot-rating{
2913
+ color: #000;
2914
+ font-weight: bold;
2915
+ }
2916
+ /* Styles for mobile devices (max-width: 767px) */
2917
+ @media only screen and (max-width: 1024px) {
2918
+ .review {
2919
+ flex: 0 0 calc(100% / 1);
2920
+ }
2921
+ }
2922
+ @media only screen and (max-width: 768px) {
2923
+ .trustpilot-arrow-left {
2924
+ left: 25px;
2925
+ }
2926
+ .trustpilot-arrow-right {
2927
+ right: 25px;
2928
+ }
2929
+ .review{
2930
+ padding: 0px 50px;
2931
+ }
2932
+ }
2933
+
2934
+ .reviews {
2935
+ display: flex;
2936
+ overflow: hidden;
2937
+ /* width: 300px; Set to the width of one review card */
2938
+ transition: transform 0.3s ease;
2939
+ }
2940
+
2941
+ .review {
2942
+ width: 300px; /* Set each review card width to match the `.reviews` container */
2943
+ flex-shrink: 0;
2944
+ }